Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

std::fpos(3) [debian man page]

std::fpos< _StateT >(3cxx)												std::fpos< _StateT >(3cxx)

NAME
std::fpos< _StateT > - SYNOPSIS
Public Member Functions fpos (streamoff __off) operator streamoff () const fpos operator+ (streamoff __off) const fpos & operator+= (streamoff __off) fpos operator- (streamoff __off) const streamoff operator- (const fpos &__other) const fpos & operator-= (streamoff __off) void state (_StateT __st) _StateT state () const Detailed Description template<typename _StateT>class std::fpos< _StateT > Class representing stream positions. The standard places no requirements upon the template parameter StateT. In this implementation StateT must be DefaultConstructible, CopyConstructible and Assignable. The standard only requires that fpos should contain a member of type StateT. In this implementation it also contains an offset stored as a signed integer. Parameters: StateT Type passed to and returned from state(). Definition at line 114 of file postypes.h. Constructor &; Destructor Documentation template<typename _StateT> std::fpos< _StateT >::fpos (streamoff__off) [inline] Construct position from offset. Definition at line 135 of file postypes.h. Member Function Documentation template<typename _StateT> std::fpos< _StateT >::operator streamoff () const [inline] Convert to streamoff. Definition at line 139 of file postypes.h. template<typename _StateT> fpos std::fpos< _StateT >::operator+ (streamoff__off) const [inline] Add position and offset. Definition at line 180 of file postypes.h. template<typename _StateT> fpos& std::fpos< _StateT >::operator+= (streamoff__off) [inline] Add offset to this position. Definition at line 156 of file postypes.h. template<typename _StateT> fpos std::fpos< _StateT >::operator- (streamoff__off) const [inline] Subtract offset from position. Definition at line 194 of file postypes.h. template<typename _StateT> streamoff std::fpos< _StateT >::operator- (const fpos< _StateT > &__other) const [inline] Subtract position to return offset. Definition at line 207 of file postypes.h. template<typename _StateT> fpos& std::fpos< _StateT >::operator-= (streamoff__off) [inline] Subtract offset from this position. Definition at line 167 of file postypes.h. template<typename _StateT> void std::fpos< _StateT >::state (_StateT__st) [inline] Remember the value of st. Definition at line 143 of file postypes.h. template<typename _StateT> _StateT std::fpos< _StateT >::state () const [inline] Return the last set value of st. Definition at line 148 of file postypes.h. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::fpos< _StateT >(3cxx)

Check Out this Related Man Page

std::complex< _Tp >(3cxx)												 std::complex< _Tp >(3cxx)

NAME
std::complex< _Tp > - SYNOPSIS
Public Types typedef _Tp value_type Public Member Functions constexpr complex (const _Tp &__r=_Tp(), const _Tp &__i=_Tp()) template<typename _Up > constexpr complex (const complex< _Up > &__z) constexpr complex __rep () const constexpr _Tp imag () const void imag (_Tp __val) complex< _Tp > & operator*= (const _Tp &) template<typename _Up > complex< _Tp > & operator*= (const complex< _Up > &) complex< _Tp > & operator+= (const _Tp &__t) template<typename _Up > complex< _Tp > & operator+= (const complex< _Up > &) complex< _Tp > & operator-= (const _Tp &__t) template<typename _Up > complex< _Tp > & operator-= (const complex< _Up > &) complex< _Tp > & operator/= (const _Tp &) template<typename _Up > complex< _Tp > & operator/= (const complex< _Up > &) complex< _Tp > & operator= (const _Tp &) template<typename _Up > complex< _Tp > & operator= (const complex< _Up > &) constexpr _Tp real () const void real (_Tp __val) Detailed Description template<typename _Tp>struct std::complex< _Tp > Template to represent complex numbers. Specializations for float, double, and long double are part of the library. Results with any other type are not guaranteed. Parameters: Tp Type of real and imaginary values. Definition at line 124 of file complex. Member Typedef Documentation template<typename _Tp> typedef _Tp std::complex< _Tp >::value_type Value typedef. Definition at line 127 of file complex. Constructor &; Destructor Documentation template<typename _Tp> constexpr std::complex< _Tp >::complex (const _Tp &__r = _Tp(), const _Tp &__i = _Tp()) [inline] Default constructor. First parameter is x, second parameter is y. Unspecified parameters default to 0. Definition at line 131 of file complex. template<typename _Tp> template<typename _Up > constexpr std::complex< _Tp >::complex (const complex< _Up > &__z) [inline] Copy constructor. Definition at line 138 of file complex. Member Function Documentation template<typename _Tp> complex<_Tp>& std::complex< _Tp >::operator+= (const _Tp &__t) [inline] Add t to this complex number. Definition at line 181 of file complex. template<typename _Tp> complex<_Tp>& std::complex< _Tp >::operator-= (const _Tp &__t) [inline] Subtract t from this complex number. Definition at line 190 of file complex. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::complex< _Tp >(3cxx)
Man Page