1 #[doc(hidden)] 2 #[macro_export] 3 macro_rules! _head { 4 ($head:expr $(, $tail:expr)* $(,)?) => { 5 $head 6 }; 7 } 8