polars-row 0.54.4

Row encodings for the Polars DataFrame library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
macro_rules! with_arms {
    ($num_bytes:ident, $block:block, ($($values:literal),+)) => {
        match $num_bytes {
            $(
            $values => {
                #[allow(non_upper_case_globals)]
                const $num_bytes: usize = $values;
                $block
            },
            )+
            _ => unreachable!(),
        }
    };
}

pub mod boolean;
pub mod decimal;
pub mod numeric;