#endian #dealing #nora #u32le

nora_endian

Crate to make dealing with endianness convenient

3 releases

0.1.2 Jul 30, 2022
0.1.1 Jul 30, 2022
0.1.0 Jul 30, 2022

#20 in #dealing

24 downloads per month

0BSD license

7KB
188 lines

Nora endian

Yet another crate to deal with endianness, though focused on simplicity

Example

use nora_endian::u32le;

let flags = u32le::from(1234);
let index = u32le::from(0);

// Easy operations on & comparisons between le/be and native types
if flags & 1 == 0 {
   // ...
}

let index_plus_one_u32: u32 = 1 + index;
let index_plus_one_u32le: u32le = index + 1;

No runtime deps