locustdb_compression_utils/xor_float/
mod.rs

1pub mod double;
2pub mod single;
3
4#[derive(Debug, PartialEq)]
5pub enum Error {
6    Eof,
7}
8
9// Special NaN value that we use to represent NULLs in the data.
10pub const NULL: f64 = unsafe { std::mem::transmute::<u64, f64>(0x7ffa_aaaa_aaaa_aaaau64) };