std::fisher_f_distribution::max

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

std::regex_error

Defined in header <regex> class regex_error; (since C++11) Defines the type of exception object thrown to report errors in the regular expressions library. Inheritance diagram. Member functions (constructor) constructs a regex_error object (public member function) code gets the std::regex_constants::error_type for a regex_error (public member function) Inherited from std::exception Member functions (destructor) [virtual] destructs the exce

std::match_results::empty

bool empty() const; (since C++11) Checks whether the match was successful. Parameters (none). Return value true if the match_results object contains no matches., false otherwise. Exceptions (none). Complexity Constant. See also size returns the number of matches in a fully-established result state (public member function)

typeid operator

Queries information of a type. Used where the dynamic type of a polymorphic object must be known and for static type identification. Syntax typeid( type ) (1) typeid( expression ) (2) The header <typeinfo> must be included before using typeid (if the header is not included, every use of the keyword typeid makes the program ill-formed.). The typeid expression is lvalue expression which refers to an object with static storage duration, of the polymorphic type const std::typ

std::swap(std::basic_stringstream)

template< class CharT, class Traits, class Alloc > void swap( std::basic_stringstream<CharT,Traits,Alloc>& lhs, std::basic_stringstream<CharT,Traits,Alloc>& rhs ); Specializes the std::swap algorithm for std::basic_stringstream. Exchanges the state of lhs with that of rhs. Effectively calls lhs.swap(rhs). Parameters lhs, rhs - streams whose state to swap Return value (none). Exceptions (none). Example See also swap (C++11)

std::allocator_traits::destroy

Defined in header <memory> template< class T > static void destroy( Alloc& a, T* p ); (since C++11) Calls the destructor of the object pointed to by p. If possible, does so by calling a.destroy(p). If not possible (e.g. a does not have the member function destroy(), then calls the destructor of *p directly, as p->~T(). Parameters a - allocator to use for destruction p - pointer to the object being destroyed Return value (none). Notes Beca

operators (std::student_t_distribution)

template< class CharT, class Traits, class ResultType > std::basic_ostream<CharT,Traits>& operator<<( std::basic_ostream<CharT,Traits>& ost, const student_t_distribution<ResultType>& d ); (1) template< class CharT, class Traits, class ResultType > std::basic_istream<CharT,Traits>& operator>>( std::basic_istream<CharT,Traits>& ist,

operators (std::uniform_real_distribution)

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

std::locale::operators (operator!=)

Defined in header <locale> bool operator==( const locale& other ) const; (1) bool operator!=( const locale& other ) const; (2) Tests two locales for equality. Named locales are considered equal if their names are equal. Unnamed locales are considered equal if they are copies of each other. Parameters other - a std::locale object to compare Return value 1) true if other is a copy of *this or has an identical name, false otherwise. 2) false if othe

std::bernoulli_distribution::max

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