Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pstream.h(3) [debian man page]

pstream.h(3)						     Library Functions Manual						      pstream.h(3)

NAME
pstream.h - Declares all PStreams classes. SYNOPSIS
#include <ios> #include <streambuf> #include <istream> #include <ostream> #include <string> #include <vector> #include <algorithm> #include <cerrno> #include <cstddef> #include <cstdlib> #include <sys/types.h> #include <sys/wait.h> #include <sys/ioctl.h> #include <unistd.h> #include <signal.h> #include <fcntl.h> Classes struct redi::pstreams Common base class providing constants and typenames. class redi::basic_pstreambuf< CharT, Traits > Class template for stream buffer. class redi::pstream_common< CharT, Traits > Class template for common base class. class redi::basic_ipstream< CharT, Traits > Class template for Input PStreams. class redi::basic_opstream< CharT, Traits > Class template for Output PStreams. class redi::basic_pstream< CharT, Traits > Class template for Bidirectional PStreams. class redi::basic_rpstream< CharT, Traits > template for Restricted PStreams. Namespaces namespace redi All PStreams classes are declared in namespace redi. Defines #define PSTREAMS_VERSION 0x0070 The library version. Typedefs typedef basic_pstreambuf< char > redi::pstreambuf Type definition for common template specialisation. typedef basic_ipstream< char > redi::ipstream Type definition for common template specialisation. typedef basic_opstream< char > redi::opstream Type definition for common template specialisation. typedef basic_pstream< char > redi::pstream Type definition for common template specialisation. typedef basic_rpstream< char > redi::rpstream Type definition for common template specialisation. Detailed Description Declares all PStreams classes. Author: Jonathan Wakely Defines classes redi::ipstream, redi::opstream, redi::pstream and redi::rpstream. Author Generated automatically by Doxygen for PStreams from the source code. PStreams Thu Nov 10 2011 pstream.h(3)

Check Out this Related Man Page

std::tr2::bool_set(3)					     Library Functions Manual					     std::tr2::bool_set(3)

NAME
std::tr2::bool_set - SYNOPSIS
Public Member Functions constexpr bool_set () constexpr bool_set (bool __t) bool contains (bool_set __b) const bool equals (bool_set __b) const bool is_emptyset () const bool is_indeterminate () const bool is_singleton () const operator bool () const Static Public Member Functions static bool_set emptyset () static bool_set indeterminate () Friends bool_set operator! (bool_set __b) bool_set operator& (bool_set __s, bool_set __t) template<typename CharT , typename Traits > std::basic_ostream< CharT, Traits > & operator<< (std::basic_ostream< CharT, Traits > &__out, bool_set __b)" bool_set operator== (bool_set __s, bool_set __t) template<typename CharT , typename Traits > std::basic_istream< CharT, Traits > & operator>> (std::basic_istream< CharT, Traits > &__in, bool_set &__b)" bool_set operator^ (bool_set __s, bool_set __t) bool_set operator| (bool_set __s, bool_set __t) Detailed Description bool_set See N2136, Bool_set: multi-valued logic by Herve Bronnimann, Guillaume Melquiond, Sylvain Pion. The implicit conversion to bool is slippery! I may use the new explicit conversion. This has been specialized in the language so that in contexts requiring a bool the conversion happens implicitly. Thus most objections should be eliminated. Definition at line 54 of file bool_set. Constructor &; Destructor Documentation constexpr std::tr2::bool_set::bool_set () [inline] Default constructor. Definition at line 59 of file bool_set. constexpr std::tr2::bool_set::bool_set (bool__t) [inline] Constructor from bool. Definition at line 62 of file bool_set. Member Function Documentation bool std::tr2::bool_set::equals (bool_set__b) const [inline] Return true if states are equal. Definition at line 69 of file bool_set. bool std::tr2::bool_set::is_emptyset () const [inline] Return true if this is empty. Definition at line 73 of file bool_set. bool std::tr2::bool_set::is_indeterminate () const [inline] Return true if this is indeterminate. Definition at line 77 of file bool_set. bool std::tr2::bool_set::is_singleton () const [inline] Return true if this is false or true (normal boolean). Definition at line 81 of file bool_set. Referenced by operator bool(). std::tr2::bool_set::operator bool () const [inline] Conversion to bool. Definition at line 86 of file bool_set. References is_singleton(). Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 std::tr2::bool_set(3)
Man Page