Macro get

Source
macro_rules! get {
    ( $in:expr; [$a:tt $(as $to:ty)*; $num:expr] ) => { ... };
    ( $in:expr; ($($type:tt $(as $to:ty)*),*) ) => { ... };
    ( $in:expr; i8 ) => { ... };
    ( $in:expr; i16 ) => { ... };
    ( $in:expr; i32 ) => { ... };
    ( $in:expr; i64 ) => { ... };
    ( $in:expr; isize ) => { ... };
    ( $in:expr; u8 ) => { ... };
    ( $in:expr; u16 ) => { ... };
    ( $in:expr; u32 ) => { ... };
    ( $in:expr; u64 ) => { ... };
    ( $in:expr; usize ) => { ... };
    ( $in:expr; char) => { ... };
    ( $in:expr; [u8]) => { ... };
    ( $in:expr; [char] ) => { ... };
    ( $in:expr; String ) => { ... };
    ( $in:expr; $from:tt as $to:ty ) => { ... };
}
Expand description

crate::io::fastio::FastIOを第一引数に、型を第二引数にとって、入力のパースを行う。