Alternatives and extensions to to the unstable char.encode_utf{8,16}()
methods.
char
stored as UTF-8. Can be borrowed as a str
.char
stored as UTF-16. Can be borrowed as a u16
slice.char
:
[u8; 4]
or into &mut[u8]
. and vice versa.(u16, Option<u16>)
or into &mut[u16]
. and vice versa.u32
fails.[See the documentation for the remaining.
The goal was to fill in those methods for stable via a trait, but that didn't work since the methods already exist; they're just un-callable.
#[no_std]
; There are some differences:
AsciiExt
doesn't exist, but is_ascii()
is made available as an inherent impl.Error
doesn't exist, but description()
is made available as an inherent impl.io
, so Utf8Iterator
doesn't implement Read
.Debug
.Utf8Char
and Utf16Char
to and from ascii::AsciiChar
.#[no_std]
, but the features are otherwize independent.The tests require nightly because they use compare against encode_utf{8,16}()
,
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.