Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

std::basic_ostream_sentry(3cxx) [debian man page]

std::basic_ostream< _CharT, _Traits >::sentry(3cxx)					       std::basic_ostream< _CharT, _Traits >::sentry(3cxx)

NAME
std::basic_ostream< _CharT, _Traits >::sentry - SYNOPSIS
Public Member Functions sentry (basic_ostream< _CharT, _Traits > &__os) ~sentry () operator bool () const Detailed Description template<typename _CharT, typename _Traits>class std::basic_ostream< _CharT, _Traits >::sentry Performs setup work for output streams. Objects of this class are created before all of the standard inserters are run. It is responsible for exception-safe prefix and suffix operations. Definition at line 379 of file ostream. Constructor &; Destructor Documentation template<typename _CharT, typename _Traits> std::basic_ostream< _CharT, _Traits >::sentry::sentry (basic_ostream< _CharT, _Traits > &__os) [explicit] The constructor performs preparatory work. Parameters: os The output stream to guard. If the stream state is good (os.good() is true), then if the stream is tied to another output stream, is.tie()->flush() is called to synchronize the output sequences. If the stream state is still good, then the sentry state becomes true (okay). Definition at line 49 of file ostream.tcc. References std::ios_base::failbit, std::basic_ios< _CharT, _Traits >::good(), std::basic_ios< _CharT, _Traits >::setstate(), and std::basic_ios< _CharT, _Traits >::tie(). template<typename _CharT, typename _Traits> std::basic_ostream< _CharT, _Traits >::sentry::~sentry () [inline] Possibly flushes the stream. If ios_base::unitbuf is set in os.flags(), and std::uncaught_exception() is true, the sentry destructor calls flush() on the output stream. Definition at line 407 of file ostream. References std::ios_base::badbit, std::uncaught_exception(), and std::ios_base::unitbuf. Member Function Documentation template<typename _CharT, typename _Traits> std::basic_ostream< _CharT, _Traits >::sentry::operator bool () const [inline], [explicit] Quick status checking. Returns: The sentry state. For ease of use, sentries may be converted to booleans. The return value is that of the sentry state (true == okay). Definition at line 428 of file ostream. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::basic_ostream< _CharT, _Traits >::sentry(3cxx)

Check Out this Related Man Page

std::uniform_real< _RealType >(3cxx)									      std::uniform_real< _RealType >(3cxx)

NAME
std::uniform_real< _RealType > - SYNOPSIS
Public Types typedef _RealType input_type typedef _RealType result_type Public Member Functions result_type max () const result_type min () const template<class _UniformRandomNumberGenerator > result_type operator() (_UniformRandomNumberGenerator &__urng) void reset () uniform_real (_RealType __min=_RealType(0), _RealType __max=_RealType(1)) Friends template<typename _RealType1 , typename _CharT , typename _Traits > std::basic_ostream< _CharT, _Traits > & operator<< (std::basic_ostream< _CharT, _Traits > &__os, const uniform_real< _RealType1 > &__x)" template<typename _RealType1 , typename _CharT , typename _Traits > std::basic_istream< _CharT, _Traits > & operator>> (std::basic_istream< _CharT, _Traits > &__is, uniform_real< _RealType1 > &__x)" Detailed Description template<typename _RealType = double>class std::uniform_real< _RealType > Uniform continuous distribution for random numbers. A continuous random distribution on the range [min, max) with equal probability throughout the range. The URNG should be real-valued and deliver number in the range [0, 1). Definition at line 2059 of file tr1_impl/random. Constructor &; Destructor Documentation template<typename _RealType = double> std::uniform_real< _RealType >::uniform_real (_RealType__min = _RealType(0), _RealType__max = _RealType(1)) [inline], [explicit] Constructs a uniform_real object. Parameters: __min [IN] The lower bound of the distribution. __max [IN] The upper bound of the distribution. Definition at line 2074 of file tr1_impl/random. Friends And Related Function Documentation template<typename _RealType = double> template<typename _RealType1 , typename _CharT , typename _Traits > std::basic_ostream<_CharT, _Traits>& operator<< (std::basic_ostream< _CharT, _Traits > &__os, const uniform_real< _RealType1 > &__x) [friend] Inserts a uniform_real random number distribution __x into the output stream __os. Parameters: __os An output stream. __x A uniform_real random number distribution. Returns: The output stream with the state of __x inserted or in an error state. template<typename _RealType = double> template<typename _RealType1 , typename _CharT , typename _Traits > std::basic_istream<_CharT, _Traits>& operator>> (std::basic_istream< _CharT, _Traits > &__is, uniform_real< _RealType1 > &__x) [friend] Extracts a uniform_real random number distribution __x from the input stream __is. Parameters: __is An input stream. __x A uniform_real random number generator engine. Returns: The input stream with __x extracted or in an error state. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Thu Aug 2 2012 std::uniform_real< _RealType >(3cxx)
Man Page