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::errc)

Defined in header <system_error> std::error_condition make_error_condition( std::errc e ); (since C++11) Creates an error condition for an errc value e. Sets the error code to int(e) and error category to std::generic_category. Parameters e - standard error code Return value Error condition for 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::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::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::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::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::reset

void reset(); (since C++11) Resets the internal state of the distribution object. After a call to this function, the next call to operator() on the distribution object will not be dependent on previous calls to operator(). Parameters (none). Return value (none). Complexity Constant.

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.

std::lognormal_distribution::min

result_type min() const; (since C++11) Returns the minimum value potentially generated by the distribution. Parameters (none). Return value The minimum value potentially generated by the distribution. Complexity Constant. See also max returns the maximum potentially generated value (public member function)