Update the description of bit_appender

Reason: dynamic_bitset does have an append_at_right(), now; it's called
push_front().
This commit is contained in:
Gennaro Prota
2025-09-16 18:54:46 +02:00
parent ff1a0fda26
commit 2cff357a91

View File

@@ -1401,11 +1401,7 @@ private:
//
// Makes up for the lack of an efficient append at the least
// significant end: bits are actually appended "at left" but
// rearranged in the destructor. From the perspective of client
// code, everything works *as if* dynamic_bitset had an
// append_at_right() function (possibly throwing the same
// exceptions as push_back()) except that the function is in
// fact called bit_appender::do_append().
// rearranged in the destructor.
//
dynamic_bitset & bs;
size_type n;