2 stable releases
1.0.1 | Oct 14, 2024 |
---|
#1411 in Encoding
318 downloads per month
Used in 2 crates
(via huski-lib)
12KB
262 lines
huski-lib-core
ASCII table with views into it. Core lib component of huski. No std & no alloc.
use huski_lib_core::ranges::{ranges, Ranges};
let rs = ranges(Ranges::Capital);
assert_eq!('A', rs[0].clone().min().unwrap() as u8 as char);
assert_eq!('Z', rs[0].clone().max().unwrap() as u8 as char);
lib.rs
:
American Standard Code for Information Interchange table aide no-std library core.