Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

std::_Base_bitset< _Nw >(3cxx)											    std::_Base_bitset< _Nw >(3cxx)

NAME
std::_Base_bitset< _Nw > - SYNOPSIS
Public Types typedef unsigned long _WordT Public Member Functions constexpr _Base_bitset (unsigned long long __val) size_t _M_are_all_aux () const void _M_do_and (const _Base_bitset< _Nw > &__x) size_t _M_do_count () const size_t _M_do_find_first (size_t __not_found) const size_t _M_do_find_next (size_t __prev, size_t __not_found) const void _M_do_flip () void _M_do_left_shift (size_t __shift) void _M_do_or (const _Base_bitset< _Nw > &__x) void _M_do_reset () void _M_do_right_shift (size_t __shift) void _M_do_set () unsigned long long _M_do_to_ullong () const unsigned long _M_do_to_ulong () const void _M_do_xor (const _Base_bitset< _Nw > &__x) const _WordT * _M_getdata () const _WordT & _M_getword (size_t __pos) _WordT _M_getword (size_t __pos) const _WordT & _M_hiword () constexpr _WordT _M_hiword () const bool _M_is_any () const bool _M_is_equal (const _Base_bitset< _Nw > &__x) const Static Public Member Functions static constexpr _WordT _S_maskbit (size_t __pos) static constexpr size_t _S_whichbit (size_t __pos) static constexpr size_t _S_whichbyte (size_t __pos) static constexpr size_t _S_whichword (size_t __pos) Public Attributes _WordT _M_w [_Nw] Detailed Description template<size_t _Nw>struct std::_Base_bitset< _Nw > Base class, general case. It is a class invariant that _Nw will be nonnegative. See documentation for bitset. Definition at line 73 of file bitset. Member Data Documentation template<size_t _Nw> _WordT std::_Base_bitset< _Nw >::_M_w[_Nw] 0 is the least significant word. Definition at line 78 of file bitset. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::_Base_bitset< _Nw >(3cxx)

Check Out this Related Man Page

std::__debug::bitset< _Nb >(3)				     Library Functions Manual				    std::__debug::bitset< _Nb >(3)

NAME
std::__debug::bitset< _Nb > - SYNOPSIS
Inherits bitset< _Nb >. Public Types typedef _Base::reference reference Public Member Functions constexpr bitset (unsigned long long __val) noexcept template<typename _CharT , typename _Traits , typename _Alloc > bitset (const std::basic_string< _CharT, _Traits, _Alloc > &__str, typename std::basic_string< _CharT, _Traits, _Alloc >::size_type __pos=0, typename std::basic_string< _CharT, _Traits, _Alloc >::size_type __n=(std::basic_string< _CharT, _Traits, _Alloc >::npos)) template<class _CharT , class _Traits , class _Alloc > bitset (const std::basic_string< _CharT, _Traits, _Alloc > &__str, typename std::basic_string< _CharT, _Traits, _Alloc >::size_type __pos, typename std::basic_string< _CharT, _Traits, _Alloc >::size_type __n, _CharT __zero, _CharT __one=_CharT('1')) bitset (const _Base &__x) template<typename _CharT > bitset (const _CharT *__str, typename std::basic_string< _CharT >::size_type __n=std::basic_string< _CharT >::npos, _CharT __zero=_CharT('0'), _CharT __one=_CharT('1')) _Base & _M_base () noexcept const _Base & _M_base () const noexcept bitset< _Nb > & flip () noexcept bitset< _Nb > & flip (size_t __pos) bool operator!= (const bitset< _Nb > &__rhs) const noexcept bitset< _Nb > & operator&= (const bitset< _Nb > &__rhs) noexcept bitset< _Nb > operator<< (size_t __pos) const noexcept bitset< _Nb > & operator<<= (size_t __pos) noexcept bool operator== (const bitset< _Nb > &__rhs) const noexcept bitset< _Nb > operator>> (size_t __pos) const noexcept bitset< _Nb > & operator>>= (size_t __pos) noexcept reference operator[] (size_t __pos) constexpr bool operator[] (size_t __pos) const bitset< _Nb > & operator^= (const bitset< _Nb > &__rhs) noexcept bitset< _Nb > & operator|= (const bitset< _Nb > &__rhs) noexcept bitset< _Nb > operator~ () const noexcept bitset< _Nb > & reset () noexcept bitset< _Nb > & reset (size_t __pos) bitset< _Nb > & set () noexcept bitset< _Nb > & set (size_t __pos, bool __val=true) template<typename _CharT , typename _Traits , typename _Alloc > std::basic_string< _CharT, _Traits, _Alloc > to_string () const " template<class _CharT , class _Traits , class _Alloc > std::basic_string< _CharT, _Traits, _Alloc > to_string (_CharT __zero, _CharT __one=_CharT('1')) const " template<typename _CharT , typename _Traits > std::basic_string< _CharT, _Traits, std::allocator < _CharT > > to_string () const " template<class _CharT , class _Traits > std::basic_string< _CharT, _Traits, std::allocator < _CharT > > to_string (_CharT __zero, _CharT __one=_CharT('1')) const " template<typename _CharT > std::basic_string< _CharT, std::char_traits< _CharT > , std::allocator< _CharT > > to_string () const " template<class _CharT > std::basic_string< _CharT, std::char_traits< _CharT > , std::allocator< _CharT > > to_string (_CharT __zero, _CharT __one=_CharT('1')) const " std::basic_string< char, std::char_traits< char > , std::allocator< char > > to_string () const " std::basic_string< char, std::char_traits< char > , std::allocator< char > > to_string (char __zero, char __one= '1') const " Detailed Description template<size_t _Nb>class std::__debug::bitset< _Nb > Class std::bitset with additional safety/checking/debug instrumentation. Definition at line 42 of file debug/bitset. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 std::__debug::bitset< _Nb >(3)
Man Page