Namespaces
Variants
Views
Actions

std::bitset::to_string

From cppreference.com
template<

    class CharT = char,
    class Traits = std::char_traits<CharT>,
    class Allocator = std::allocator<CharT>
> std::basic_string<CharT,Traits,Allocator>

    to_string(CharT zero = CharT(0), CharT one = CharT(1)) const;

Converts the contents of the bitset to a string. Uses zero to represent bits with value of false and one to represent bits with value of true.

The resulting string contains N characters with the first character corresponds to the last (N-1th) bit and the last character corresponding to the first bit.

Contents

[edit] Parameters

zero - character to use to represent false
one - character to use to represent true

[edit] Return value

the converted string

[edit] Example

[edit] See also

returns an unsigned long integer representation of the data
(public member function) [edit]
(C++11)
returns an unsigned long long integer representation of the data
(public member function) [edit]