pub fn parse_hex<'a, E, const N: usize>(
input: &'a str
) -> IResult<&'a str, [u8; N], E> where
E: ParseError<&'a str>, Expand description
Parse sa hux dump, without any separators.
Errors out if there is not enough data to fill an array of length N.