mirror of
https://github.com/boostorg/dynamic_bitset.git
synced 2026-01-19 04:12:09 +00:00
dynamic_bitset documentation and examples:
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]
This commit is contained in:
@@ -3,14 +3,17 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//
|
||||
// Sample output:
|
||||
// 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);
|
||||
@@ -25,5 +28,5 @@ int main()
|
||||
const boost::dynamic_bitset<> b3(2, 3ul);
|
||||
std::cout << "bits(3) = " << b3 << std::endl;
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user