libstdc++
GNU C++ library
Loading...
Searching...
No Matches

◆ operator<<() [12/20]

__ostream_type & std::basic_ostream< char, _Traits >::operator<< ( long long __n)
inlineinherited

Integer arithmetic inserters.

Parameters
__nA variable of builtin integral type.
Returns
*this if successful

These functions use the stream's current locale (specifically, the num_get facet) to perform numeric formatting.

Definition at line 210 of file ostream.h.

212 { return _M_insert(__n); }
__ostream_type & _M_insert(_ValueT __v)
Template class basic_iostream.
Definition istream:999