1pub mod double;
2pub mod single;
34#[derive(Debug, PartialEq)]
5pub enum Error {
6 Eof,
7}
89// 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) };