#ascii-table #ascii #range #no-alloc

no-std huski-lib-core

No std ASCII table aide library core

5 stable releases

1.1.1 Mar 21, 2025
1.1.0 Dec 15, 2024
1.0.2 Dec 15, 2024
1.0.1 Oct 14, 2024

#2349 in Encoding

Download history 15/week @ 2024-12-21 6/week @ 2025-02-15 4/week @ 2025-02-22 64/week @ 2025-03-15 84/week @ 2025-03-22 4/week @ 2025-03-29 2/week @ 2025-04-05

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

MIT license

12KB
262 lines

American Standard Code for Information Interchange table aide no-std library core.


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);

No runtime deps