1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-01 11:19:21 +00:00

AK: Add BigEndianInputBitStream::bits_until_next_byte_boundary()

This commit is contained in:
Lucas CHOLLET 2024-01-18 00:28:32 -05:00 committed by Jelle Raaijmakers
parent 9ae17e3a7a
commit cbfea68ed8

View File

@ -111,6 +111,7 @@ public:
/// Whether we are (accidentally or intentionally) at a byte boundary right now.
ALWAYS_INLINE bool is_aligned_to_byte_boundary() const { return m_bit_offset % 8 == 0; }
ALWAYS_INLINE u8 bits_until_next_byte_boundary() const { return m_bit_offset % 8 == 0 ? 0 : 8 - m_bit_offset; }
private:
Optional<u8> m_current_byte;