1 stable release
1.0.0 | Jan 19, 2024 |
---|
#116 in Data formats
5KB
62 lines
fi2b
Convert floating point and integer numbers into bytes and put them into an array
let a: &[u8] = &fi2b![1, 2, 1.0, -1.0];
assert_eq!(
a,
[1u8, 0u8, 0u8, 0u8, 2u8, 0u8, 0u8, 0u8, 0u8, 0u8, 128u8, 63u8, 0u8, 0u8, 128u8, 191u8]
)
Dependencies
~250–700KB
~17K SLoC