Function nom::character::streaming::tab [−][src]
pub fn tab<I, Error: ParseError<I>>(input: I) -> IResult<I, char, Error> where
I: Slice<RangeFrom<usize>> + InputIter,
<I as InputIter>::Item: AsChar,
Matches a tab character ‘\t’.
streaming version: Will return Err(nom::Err::Incomplete(_))
if there’s not enough input data.
Example
assert_eq!(tab::<_, (_, ErrorKind)>("\tc"), Ok(("c", '\t'))); assert_eq!(tab::<_, (_, ErrorKind)>("\r\nc"), Err(Err::Error(("\r\nc", ErrorKind::Char)))); assert_eq!(tab::<_, (_, ErrorKind)>(""), Err(Err::Incomplete(Needed::Size(1))));