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