read-primitives

Crates.ioread-primitives
lib.rsread-primitives
version0.1.1
sourcesrc
created_at2023-02-06 19:48:30.559726
updated_at2023-02-06 20:00:39.133735
descriptionread-primitives provides traits to read primitive types from any type that implements std::io::Read
homepage
repositoryhttps://github.com/heberlein/read-primitives
max_upload_size
id778190
size19,760
(heberlein)

documentation

README

read-primitives

read-primitives adds several extension traits, that make it easy to read primitive types from any type that implements std::io::Read

Examples


    fn main() {
        let bytes: [u8; 8] = [24, 45, 68, 84, 251, 33, 9, 64];
        let float = bytes.as_slice().read_le_f64().unwrap();
        printf!("{float}");
    }

3.141592653589793

Commit count: 9

cargo fmt