#ascii #ascii-table #no-alloc

no-std huski-lib-core

No std ASCII table aide library core

4 stable releases

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

#2168 in Encoding

Download history 262/week @ 2024-10-10 54/week @ 2024-10-17 2/week @ 2024-10-24 2/week @ 2024-10-31 2/week @ 2024-11-07 3/week @ 2024-11-14 6/week @ 2024-11-21 13/week @ 2024-12-05 255/week @ 2024-12-12 22/week @ 2024-12-19

283 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