| 64 | Iterator iterAt(int i) const noexcept { return {_bits.cbegin() + i}; } |
| 65 | Iterator begin() const noexcept { return _bits.cbegin(); } |
| 66 | Iterator end() const noexcept { return _bits.cend(); } |
| 67 | |
| 68 | /** |
| 69 | * Appends the least-significant bits, from value, in order from most-significant to |
no outgoing calls
no test coverage detected