Function root_io::core::parsers::tarray[][src]

pub fn tarray<'s, E, F, O>(
    parser: F,
    i: &'s [u8]
) -> IResult<&'s [u8], Vec<O>, E> where
    F: Fn(&'s [u8]) -> IResult<&'s [u8], O, E>,
    E: ParseError<&'s [u8]> + Debug

Parse a so-called TArray. Note that ROOT's TArrays are actually not fixed size. Example usage for TArrayI: tarray(nom::complete::be_i32, input_slice)