Function glue::combinators::whitespace::trim
source ยท pub fn trim<'a, Par, Res>(parser: Par) -> impl Parser<'a, Res>where
Par: Parser<'a, Res>,Expand description
Trim preceding and following whitespace from a parser.
assert!(trim(is("foobar")).test(" foobar "));