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>