1
2
3
4
5
6
7
8
9
10
pub(super) const BYTE_SHIFT: u8 = 6;

pub(super) const CONT_MASK: u8 = (1 << BYTE_SHIFT) - 1;

pub(super) const CONT_TAG: u8 = 0b1000_0000;

#[cfg_attr(not(windows), allow(dead_code))]
pub(super) const fn is_continuation(byte: u8) -> bool {
    byte & !CONT_MASK == CONT_TAG
}