pub fn spaces<I>() -> Spaces<I>Expand description
Skips over space zero or more times
use combine::Parser;
use combine::parser::byte::spaces;
assert_eq!(spaces().parse(&b""[..]), Ok(((), &b""[..])));
assert_eq!(spaces().parse(&b" "[..]), Ok(((), &b""[..])));