chars

Function chars 

Source
pub fn chars<'a, E, E2>(
    qty: impl TryInto<Repetition, Error = E>,
) -> Result<impl Pipe<&'a str, (Vec<char>,), E2>, E>
where Incomplete: Into<E2>,
Expand description

takes qty of chars from an input

assert_eq!(
    chars::<_, Incomplete>(..5).unwrap().apply("aỹe"),
    Ok(("", (vec!['a', 'y', '\u{0303}', 'e'],)))
);