| Crates.io | huski-lib-core |
| lib.rs | huski-lib-core |
| version | 1.1.1 |
| created_at | 2024-10-14 19:07:52.094438+00 |
| updated_at | 2025-03-21 21:14:58.695152+00 |
| description | No std ASCII table aide library core. |
| homepage | |
| repository | https://github.com/deep-outcome/ascii-aide/tree/main/huski-lib-core |
| max_upload_size | |
| id | 1408568 |
| size | 12,302 |
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);