Function mz_repr::strconv::parse_array

source ·
pub fn parse_array<'a, T, E>(
    s: &'a str,
    make_null: impl FnMut() -> T,
    gen_elem: impl FnMut(Cow<'a, str>) -> Result<T, E>
) -> Result<(Vec<T>, Vec<ArrayDimension>), ParseError>
where E: ToString,