Registry / utility / unicode-reader

unicode-reader

JSON →
library1.0.2rscratesunverified

Adaptors which wrap byte-oriented readers and yield the UTF-8 data as Unicode code points or grapheme clusters.

# Cargo.toml [dependencies] unicode_reader = "1.0.2"
INSTALL
IMPORT
SIG · UNICODE-READER
U
unicode-reader
utilityrustv1.0.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

CodePoints
use unicode_reader::CodePoints;

Reads Unicode code points from a byte reader.

use unicode_reader::CodePoints; use std::io::BufReader; fn main() { let bytes = b"hello"; let reader = BufReader::new(&bytes[..]); let code_points = CodePoints::from(reader); for cp in code_points { println!("{:?}", cp.unwrap()); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.2latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
unicode-reader — cargo add unicode-reader · libregistry