second

Macro second 

Source
macro_rules! second {
    (zeroth, $($code:tt)*) => { ... };
    (first, $($code:tt)*) => { ... };
    (second, $($code:tt)*) => { ... };
    (third, $($code:tt)*) => { ... };
}