//! A decoder of bytes into characters.
//! The trait `ByteStreamCharDecoder` can be implemented for different character encodings, and
//! implementations are included for UTF-8, and UTF-16 (in big-endian and little-endian byte order).
pub use ByteStreamCharDecoder;
pub use Utf16BigEndianDecoder;
pub use Utf16LittleEndianDecoder;
pub use Utf8Decoder;