// This module implements the WTF-8 encoding specification:
// https://simonsapin.github.io/wtf-8/
use CodePoints;
pub use DecodeWide;
pub use EncodeWide;
if_raw!
const BYTE_SHIFT: u8 = 6;
const CONT_MASK: u8 = - 1;
const CONT_TAG: u8 = 0b1000_0000;
const