std::fputws

Defined in header <cwchar> int fputws( const wchar_t* str, std::FILE* stream ); Writes given null-terminated wide string to the given output stream. Parameters str - null-terminated wide string to be written stream - output stream Return value Non-negative integer on success, WEOF on failure. See also fputs writes a character string to a file stream (function) wprintffwprintfswprintf prints formatted wide character output to stdout, a file st

std::basic_istringstream::rdbuf

std::basic_stringbuf<CharT, Traits, Allocator>* rdbuf() const; Returns pointer to the underlying raw string device object. Parameters (none). Return value Pointer to the underlying raw string device. Example

std::function::function

function(); (1) (since C++11) function( std::nullptr_t ); (2) (since C++11) function( const function& other ); (3) (since C++11) function( function&& other ); (4) (since C++11) template< class F > function( F f ); (5) (since C++11) template< class Alloc > function( std::allocator_arg_t, const Alloc& alloc ); (6) (since C++11) template< class Alloc > function( std::allocator_arg_t, const Alloc& alloc, std::n

std::exponential_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)

std::multimap::upper_bound

iterator upper_bound( const Key& key ); (1) const_iterator upper_bound( const Key& key ) const; (1) template< class K > iterator upper_bound( const K& x ); (2) (since C++14) template< class K > const_iterator upper_bound( const K& x ) const; (2) (since C++14) 1) Returns an iterator pointing to the first element that is greater than key. 2) Returns an iterator pointing to the first element that compares greater to the value x. This overlo

operators (std::poisson_distribution)

template< class ResultType > bool operator==( const poisson_distribution<ResultType>& lhs, const poisson_distribution<ResultType>& rhs ); (1) template< class ResultType > bool operator!=( const poisson_distribution<ResultType>& lhs, const poisson_distribution<ResultType>& rhs ); (2) Compares two distribution objects. Two distribution objects are equal when parameter values and internal state is t

std::auto_ptr::get

T* get() const; (deprecated) Returns the pointer that is held by *this. Parameters (none). Return value The pointer held by *this. Exceptions (none). See also operator*operator-> accesses the managed object (public member function)

std::moneypunct::decimal_point

Defined in header <locale> public: CharT decimal_point() const; (1) protected: virtual CharT do_decimal_point() const; (2) 1) Public member function, calls the member function do_decimal_point of the most derived class. 2) Returns the character to use as the decimal point separator in monetary I/O if the format uses fractions (that is, if do_frac_digits() is greater than zero). For typical U.S. locales, it is the character '.' (or L'.') Return value The object of

std::common_type

Defined in header <type_traits> template< class... T > struct common_type; (since C++11) Determines the common type among all types T..., that is the type all T... can be implicitly converted to. For non-specialized std::common_type, the rules for determining the common type between every pair T1, T2 are exactly the rules for determining the return type of the ternary conditional operator in unevaluated context, with arbitrary first argument of type bool and with xval

std::shared_ptr::operator bool

explicit operator bool() const; Checks if *this stores a non-null pointer, i.e. whether get() != nullptr. Parameters (none). Return value true if *this stores a pointer, false otherwise. Exceptions noexcept specification: noexcept Notes An empty shared_ptr (where use_count() == 0) may store a non-null pointer accessible by get(), e.g. if it were created using the aliasing constructor. Example #include <iostream> #include <memory> typedef std::shared_ptr&