operators (std::dynarray)

template< class T > bool operator==( const dynarray<T>& lhs, const dynarray<T>& rhs ); (1) template< class T > bool operator!=( const dynarray<T>& lhs, const dynarray<T>& rhs ); (2) template< class T > bool operator<( const dynarray<T>& lhs, const dynarray<T>& rhs ); (3) template< class T > bool operator<=( const dynarray<T>& lh

std::setprecision

Defined in header <iomanip> /*unspecified*/ setprecision( int n ); When used in an expression out << setprecision(n) or in >> setprecision(n), sets the precision parameter of the stream out or in to exactly n. Parameters n - new value for precision Return value Returns an object of unspecified type such that if str is the name of an output stream of type std::basic_ostream<CharT, Traits> or an input stream of type std::basic_istream<CharT,

std::set::max_size

size_type max_size() const; Returns the maximum number of elements the container is able to hold due to system or library implementation limitations, i.e. std::distance(begin(), end()) for the largest container. Parameters (none). Return value Maximum number of elements. Exceptions (none) (until C++11) noexcept specification: noexcept (since C++11) Complexity Constant. Notes This value is typically equal to std::numeric_limits<size_type>::max(), and reflects the

strstream

This header is part of the Input/Output library. Classes strstreambuf (deprecated) implements raw character array device (class) istrstream (deprecated) implements character array input operations (class) ostrstream (deprecated) implements character array output operations (class) strstream (deprecated) implements character array input/output operations (class) Synopsis namespace std { class strstreambuf; class istrstream; class ostrstream;

std::literals::chrono_literals::operator&quot;&quot;us

Defined in header <chrono> constexpr std::chrono::microseconds operator "" us(unsigned long long us); (1) (since C++14) constexpr std::chrono::duration</*unspecified*/, std::micro> operator "" us(long double us); (2) (since C++14) Forms a std::chrono::duration literal representing microseconds. 1) integer literal, returns exactly std::chrono::microseconds(us) 2) floating-point literal, returns a floating-point duration equivalent to

std::allocator_traits::select_on_container_copy_construction

Defined in header <memory> static Alloc select_on_container_copy_construction( const Alloc& a ); (since C++11) If possible, obtains the copy-constructed version of the allocator a, by calling a.select_on_container_copy_construction(). If the above is not possible (e.g. a does not have the member function select_on_container_copy_construction(), then returns a, unmodified. This function is called by the copy constructors of all standard library containers. It allows the

std::num_put

Defined in header <locale> template< class CharT, class OutputIt = std::ostreambuf_iterator<CharT> > class num_put; Class std::num_put encapsulates the rules for formatting numeric values as strings. Specifically, the types bool, long, unsigned long, long long, unsigned long long, double, long double, void*, and of all types implicitly convertible to these (such as int or float) are supported. The standard formatting output operators (such as cout <&

std::basic_streambuf::in_avail

std::streamsize in_avail(); Returns the number of characters available in the get area. If a read position is available, effectively returns egptr() - gptr(), the size of the get area. In this case, the number of bytes returned is the number of bytes that can be extracted from the buffer without calling underflow(). If the get area is empty, calls showmanyc() to determine the number of bytes available in the associated character sequence. In this case, the value returned is the number o

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::tuple_size&lt;std::tuple&gt;

Defined in header <tuple> template< class T > class tuple_size; /*undefined*/ (1) (since C++11) template< class... Types > class tuple_size< std::tuple<Types...> > : public std::integral_constant<std::size_t, sizeof...(Types)> { }; (2) (since C++11) Defined in header <tuple> Defined in header <array> Defined in header <utility> (since C++17)(since C++17) template< class T > class tuple_size<const T