pub fn parse_ber_set_of<'a, F>(f: F) -> impl FnMut(&'a [u8]) -> BerResult<'_>
where F: Fn(&'a [u8]) -> BerResult<'_>,
Expand description

Parse a SET OF object

Given a subparser for a BER type, parse a set of identical objects.

/// Read a SET OF INTEGER
fn parser(i:&[u8]) -> BerResult<BerObject> {
    parse_ber_set_of(parse_ber_integer)(i)
}

let (rem, v) = parser(&bytes).expect("parsing failed");