16 auto decode(di::Span<byte const> input) -> di::String;
20 auto flush() -> di::String;
23 constexpr static auto default_lower_bound = u8(0x80);
24 constexpr static auto default_upper_bound = u8(0xBF);
26 void decode_byte(di::String& output,
byte input);
27 void decode_first_byte(di::String& output,
byte input);
28 void output_code_point(di::String& output, c32 code_point);
30 u8 m_pending_code_units { 0 };
31 u32 m_pending_code_point { 0 };
32 u8 m_lower_bound { default_lower_bound };
33 u8 m_upper_bound { default_upper_bound };