expand_array 0.2.0

Macro to convert a static array to a fixed-size array
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod flags;
pub mod main;

#[macro_export]
macro_rules! bitify {
    ( $str:tt ) => {{
        let s = stringify!($str);
        $crate::bitify_func(s.as_bytes())
    }};
}