File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
include/boost/dynamic_bitset Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ cmake: '-DDYNAMIC_BITSET_MRDOCS_BUILD=ON'
1212input :
1313 - ../include
1414exclude-symbols :
15+ - ' boost::bit_iterator_base'
16+ - ' boost::bit_iterator'
17+ - ' boost::const_bit_iterator'
1518 - ' boost::detail'
1619 - ' boost::detail::**'
1720 - ' boost::to_string_helper'
Original file line number Diff line number Diff line change @@ -271,10 +271,19 @@ class dynamic_bitset
271271 friend class const_bit_iterator < dynamic_bitset >;
272272
273273 // ! A read/write iterator into the bitset.
274+ // !
275+ // ! If `AllocatorOrContainer` is an allocator type, this is a
276+ // ! C++20 RandomAccessIterator; otherwise, its category is the
277+ // ! corresponding "non-legacy" category of the iterator type of
278+ // ! the underlying container; for instance, if the underlying
279+ // ! container provides LegacyBidirectionalIterators, this is a
280+ // ! BidirectionalIterator.
274281 // -----------------------------------------------------------------------
275282 typedef bit_iterator< dynamic_bitset > iterator;
276283
277284 // ! A read-only iterator into the bitset.
285+ // !
286+ // ! \copydetails iterator
278287 // -----------------------------------------------------------------------
279288 typedef const_bit_iterator< dynamic_bitset > const_iterator;
280289
You can’t perform that action at this time.
0 commit comments