macro_rules! read_array {
    ([$cell_t:ty; $len:expr] from $input:ident to $vec:ident) => { ... };
    ([$cell_t:ty; read $len_t:ty] from $input:ident) => { ... };
    ([$cell_t:ty; $len:expr] from $input:ident) => { ... };
    ($len:expr; bits from $input:ident) => { ... };
}
Expand description

Reads array of integers from given input.