override

Usage override specifier

compl

Usage alternative operators: as an alternative for ~

std::strncmp

Defined in header <cstring> int strncmp( const char* lhs, const char* rhs, size_t count ); Compares at most count characters of two null-terminated byte strings. The comparison is done lexicographically. The sign of the result is the sign of the difference between the values of the first pair of characters (both interpreted as unsigned char) that differ in the strings being compared. The behavior is undefined if lhs or rhs are not pointers to null-terminated strings. Para

std::basic_istream::peek

int_type peek(); Behaves as UnformattedInputFunction. After constructing and testing the sentry object, reads the next character from the input stream without extracting it. Parameters (none). Return value If good() == true, returns the next character as obtained by rdbuf()->sgetc(). Otherwise, returns Traits::eof(). Exceptions failure if an error occurred (the error state flag is not goodbit) and exceptions() is set to throw for that state. If an internal operation throw

typeindex

This header is part of the types support library. Classes type_index (C++11) wrapper around a type_info object, that can be used as index in associative and unordered associative containers (class) std::hash<std::type_index> (C++11) hash support for std::type_index (class template specialization) Forward declarations Defined in header <functional> hash (C++11) hash function object (class template) Synopsis namespace std { class type_index;

std::clock_t

Defined in header <ctime> typedef /* unspecified */ clock_t; Arithmetic type capable of representing the process running time of implementation-defined range and precision. See also clock returns raw processor clock time since the program is started (function) CLOCKS_PER_SEC number of processor clock ticks per second (macro constant) C documentation for clock_t

std::fisher_f_distribution::fisher_f_distribution

explicit fisher_f_distribution( RealType m = 1.0, RealType n = 1.0 ); (1) (since C++11) explicit fisher_f_distribution( const param_type& params ); (2) (since C++11) Constructs a new distribution object. The first version uses m and n as the distribution parameters, the second version uses params as the distribution parameters. Parameters m - the m distribution parameter (degrees of freedom) n - the n distribution parameter (degrees of freedom) params - the

std::auto_ptr::operator auto_ptr&lt;Y&gt;

template< class Y > operator auto_ptr_ref<Y>(); (1) (deprecated) template< class Y > operator auto_ptr<Y>(); (2) (deprecated) Converts *this to an auto_ptr for a different type Y. 1) Returns an implementation-defined type that holds a reference to *this. std::auto_ptr is convertible and assignable from this template. The implementation is allowed to provide the template with a different name or implement equivalent functionality in other ways. 2) Construc

std::queue::pop

void pop(); Removes an element from the front of the queue. Effectively calls c.pop_front(). Parameters (none). Return value (none). Complexity Equal to the complexity of Container::pop_front. See also emplace (C++11) constructs element in-place at the end (public member function) push inserts element at the end (public member function) front access the first element (public member function)

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