3 releases (stable)

1.0.1 Jul 21, 2019
1.0.0 Jul 19, 2019
0.1.0 Jul 19, 2019

#1643 in Parser implementations

Download history 7621/week @ 2024-03-14 8924/week @ 2024-03-21 8751/week @ 2024-03-28 9913/week @ 2024-04-04 10020/week @ 2024-04-11 9939/week @ 2024-04-18 9096/week @ 2024-04-25 10066/week @ 2024-05-02 10102/week @ 2024-05-09 12969/week @ 2024-05-16 9175/week @ 2024-05-23 9616/week @ 2024-05-30 9282/week @ 2024-06-06 12902/week @ 2024-06-13 10562/week @ 2024-06-20 7036/week @ 2024-06-27

41,524 downloads per month
Used in 100 crates (8 directly)

MIT/Apache

14KB
126 lines

UTF-8 decode

This crates provides incremental UTF-8 decoders implementing the Iterator trait. Thoses iterators are wrappers around u8 bytes iterators.

Decoder

The Decoder struct wraps Iterator<Item = u8> iterators. You can use it, for instance, to decode u8 slices.

extern crate utf8_decode;

use utf8_decode::Decoder;

fn main() -> std::io::Result<()> {
    let bytes = [72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100, 33, 32, 240, 159, 140, 141];

    let decoder = Decoder::new(bytes.iter().cloned());

    let mut string = String::new();
    for c in decoder {
        string.push(c?);
    }

    println!("{}", string);

    Ok(())
}

UnsafeDecoder

The UnsafeDecoder wraps Iterator<Item = std::io::Result<u8>> iterators. You can use it, for instance, to decode UTF-8 encoded files.

extern crate utf8_decode;

use std::fs::File;
use std::io::Read;
use utf8_decode::UnsafeDecoder;

fn main() -> std::io::Result<()> {
    let file = File::open("examples/file.txt")?;

    let decoder = UnsafeDecoder::new(file.bytes());

    let mut string = String::new();
    for c in decoder {
        string.push(c?);
    }

    println!("{}", string);

    Ok(())
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps