Crates.io | huski-lib-core |
lib.rs | huski-lib-core |
version | 1.0.1 |
source | src |
created_at | 2024-10-14 19:07:52.094438 |
updated_at | 2024-10-14 19:36:09.845825 |
description | No std ASCII table aide library core. |
homepage | https://github.com/bravequickcleverfibreyarn/ascii-aide/tree/main/huski-lib-core |
repository | https://github.com/bravequickcleverfibreyarn/ascii-aide/tree/main/huski-lib-core |
max_upload_size | |
id | 1408568 |
size | 12,359 |
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);