#ascii #ascii-table #no-alloc

no-std huski-lib-core

No std ASCII table aide library core

4 stable releases

new 1.1.0 Dec 15, 2024
1.0.2 Dec 15, 2024
1.0.1 Oct 14, 2024

#2070 in Encoding

Download history 314/week @ 2024-10-14 4/week @ 2024-10-21 4/week @ 2024-11-04 9/week @ 2024-11-18 150/week @ 2024-12-09

159 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