1#[allow(non_snake_case)] 2#[macro_export] 3macro_rules! hashboolean { 4 ($t:expr, $p:expr) => { 5 $crate::macros::hashpow_2::hashpow2!($t, $p) 6 }; 7} 8 9pub use hashboolean;