no-std huski-lib-core

No std ASCII table aide library core

2 stable releases

new 1.0.1 Oct 14, 2024

#1978 in Encoding

Download history 303/week @ 2024-10-13

303 downloads per month
Used in 2 crates (via huski-lib)

MIT license

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.

No runtime deps