1 2 3 4 5 6 7 8
#[macro_export] macro_rules! selectors { ($($name:ident = $str:literal),* $(,)?) => { $( pub const $name: [u8; 4] = $crate::bobcat_cd::const_keccak_sel($str); )* }; }