File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -46,12 +46,11 @@ an unsigned long `n`, the bit at position `i` of the bitset has the same value
4646as `(n >> i) & 1`.
4747
4848== Rationale
49- Because of the proxy reference type, `dynamic_bitset` is not a <a
50- href="https://en.cppreference.com/w/cpp/named_req/Container.html">Container</a>
51- and its iterators do not satisfy the requirements for a LegacyForwardIterator.
52- This means that its iterators are not usable with many standard algorithms.
53- However, `dynamic_bitset` provides C++20 iterators which can be used with
54- ranges.
49+ Because of the proxy reference type, `dynamic_bitset` is not a
50+ https://en.cppreference.com/w/cpp/named_req/Container.html[Container] and its
51+ iterators do not satisfy the requirements for a LegacyForwardIterator. This
52+ means that its iterators are not usable with many standard algorithms. However,
53+ `dynamic_bitset` provides C++20 iterators which can be used with ranges.
5554
5655Some people prefer the name "toggle" to "flip". The name "flip" was chosen
5756because that is the name used in `std::bitset`. In fact, most of the function
You can’t perform that action at this time.
0 commit comments