From 3a15e6bc7dd0d059a1e44a029480bc5e89847aad Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Mon, 7 Oct 2002 19:01:06 +0000 Subject: [PATCH] added from_block_range [SVN r15789] --- dynamic_bitset.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/dynamic_bitset.html b/dynamic_bitset.html index 11bb812..aadbb73 100644 --- a/dynamic_bitset.html +++ b/dynamic_bitset.html @@ -1280,6 +1280,22 @@ Iterator and its value_type must be the same type as or equal b.num_blocks(). +
+
+template <typename BlockIterator, typename Block, typename Alloc>
+void from_block_range(BlockIterator first,
+    BlockIterator last, const dynamic_bitset<Block, Alloc>& b)
+
+Effects: Reads blocks from the iterator range into the +bitset.
+ +Requires: The type BlockIterator must be a model of Input +Iterator and its value_type must be the same type as +Block. The size of the iterator range must be less or equal +to b.num_blocks(). + +
 template <typename Char, typename Traits, typename Block, typename Alloc>