std::make_error_condition(std::future_errc)

Defined in header <future> std::error_condition make_error_condition( std::future_errc e ); (since C++11) Constructs an std::error_condition object from a value of type std::future_errc as if by: std::error_condition(static_cast<int>(e), std::future_category()). Parameters e - error code number Return value A value of type std::error_condition that holds the error code number from e associated with the error category "future". Example See also e

std::make_error_condition(std::io_errc)

Defined in header <ios> std::error_condition make_error_condition( std::io_errc e ); (since C++11) Constructs an std::error_condition object from a value of type std::io_errc as if by return std::error_condition(static_cast<int>(e), std::iostream_category()). Parameters e - error code number Return value A value of type std::error_condition that holds the error code number from e associated with the error category "iostream". Exceptions noexcept spec

std::make_error_code(std::errc)

Defined in header <system_error> std::error_code make_error_code( std::errc e ); (since C++11) Creates error code value for errc enum e. Equivalent to std::error_code(static_cast<int>(e), std::generic_category()). Parameters e - error code enum to create error code for Return value Error code corresponding to e. Exceptions noexcept specification: noexcept

std::make_error_code(std::io_errc)

Defined in header <ios> std::error_code make_error_code( std::io_errc e ); (since C++11) Constructs an std::error_code object from a value of type std::io_errc as if by return std::error_code(static_cast<int>(e), std::iostream_category()). This function is called by the constructor of std::error_code when given an std::io_errc argument. Parameters e - error code number Return value A value of type std::error_code that holds the error code number from e a

std::lower_bound

Defined in header <algorithm> template< class ForwardIt, class T > ForwardIt lower_bound( ForwardIt first, ForwardIt last, const T& value ); (1) template< class ForwardIt, class T, class Compare > ForwardIt lower_bound( ForwardIt first, ForwardIt last, const T& value, Compare comp ); (2) Returns an iterator pointing to the first element in the range [first, last) that is not less than (i.e. greater or equal to) value. The range [first, last) must b

std::make_error_code(std::future_errc)

Defined in header <future> std::error_code make_error_code( std::future_errc e ); (since C++11) Constructs an std::error_code object from a value of type std::future_errc as if by: std::error_code(static_cast<int>(e), std::future_category()). This function is called by the constructor of std::error_code when given an std::future_errc argument. Parameters e - error code number Return value A value of type std::error_code that holds the error code number f

std::lognormal_distribution::m

RealType m() const; (1) (since C++11) RealType s() const; (2) (since C++11) Returns the parameters the distribution was constructed with. 1) Returns the mean m distribution parameter. It defines the location of the peak. The default value is 0.0. 2) Returns the deviation s distribution parameter. The default value is 1.0. Parameters (none). Return value 1) The mean m distribution parameter. 2) The deviation s distribution parameter. See also param gets or sets th

std::lognormal_distribution::lognormal_distribution

explicit lognormal_distribution( RealType m = 0.0, RealType s = 1.0 ); (1) (since C++11) explicit lognormal_distribution( const param_type& params ); (2) (since C++11) Constructs a new distribution object. The first version uses m and s as the distribution parameters, the second version uses params as the distribution parameters. Parameters m - the m distribution parameter (log-scale) s - the s distribution parameter (shape) params - the distribution parame

std::longjmp

Defined in header <csetjmp> void longjmp( std::jmp_buf env, int status ); Loads the execution context env saved by a previous call to setjmp. This function does not return. Control is transferred to the call site of the macro setjmp that set up env. That setjmp then returns the value, passed as the status. If the function that called setjmp has exited, the behavior is undefined (in other words, only long jumps up the call stack are allowed). No destructors for automatic obj

std::lognormal_distribution::param

param_type param() const; (1) (since C++11) void param( const param_type& params ); (2) (since C++11) Manages the associated distribution parameter set. 1) Returns the associated parameter set. 2) Sets the associated parameter set to params. Parameters params - new contents of the associated parameter set Return value 1) The associated parameter set. 2) (none). Complexity Constant.