Return a new span starting at the given position.
| 48 | |
| 49 | /// Return a new span starting at the given position. |
| 50 | constexpr BitmapSpan NewStartingAt(size_type bit_start) const noexcept { |
| 51 | auto out = *this; |
| 52 | out.bit_start_ += bit_start; |
| 53 | out.Normalize(); |
| 54 | return out; |
| 55 | } |
| 56 | |
| 57 | private: |
| 58 | byte_type* data_; |