nullvec 0.1.0

Rust nullable vector, which can contain null(missing) values as element
Documentation
1
2
3
4
5
6
7
8

macro_rules! macro_dispatch {
    ($m:ident, $( $t:ident ),* ) => {
        $(
            $m!($t);
        )*
    };
}