mirror of
https://github.com/boostorg/dynamic_bitset.git
synced 2026-01-19 04:12:09 +00:00
Documentation:
--------------
* converted from HTML 4.01 Transitional to XHTML 1.1 (reason: the website
uses already XHTML 1.0 Strict, and our page didn't validate as such, even
though on the website a link to the W3C markup validation service is
affixed)
* removed some misleading sentences
* referenced the source files of examples, so that they do not go out of
sync again
* clarified rationale section
Example files:
--------------
* example 3 shows that stream extraction may expand the bitset
* minor improvements to all examples
[SVN r47389]
33 lines
746 B
C++
33 lines
746 B
C++
// (C) Copyright Jeremy Siek 2001.
|
|
// Distributed under the Boost Software License, Version 1.0. (See
|
|
// accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
// Sample output:
|
|
//
|
|
// bits(0) = 00
|
|
// bits(1) = 01
|
|
// bits(2) = 10
|
|
// bits(3) = 11
|
|
|
|
|
|
#include <iostream>
|
|
#include <boost/dynamic_bitset.hpp>
|
|
|
|
int main()
|
|
{
|
|
const boost::dynamic_bitset<> b0(2, 0ul);
|
|
std::cout << "bits(0) = " << b0 << std::endl;
|
|
|
|
const boost::dynamic_bitset<> b1(2, 1ul);
|
|
std::cout << "bits(1) = " << b1 << std::endl;
|
|
|
|
const boost::dynamic_bitset<> b2(2, 2ul);
|
|
std::cout << "bits(2) = " << b2 << std::endl;
|
|
|
|
const boost::dynamic_bitset<> b3(2, 3ul);
|
|
std::cout << "bits(3) = " << b3 << std::endl;
|
|
|
|
return 0;
|
|
}
|