pub fn i16<T, E: ParseError<T>>(input: T) -> IResult<T, i16, E>where
T: Stream,
<T as Stream>::Token: AsChar + Copy,👎Deprecated since 0.1.0: Replaced with <code>winnow::character::dec_int</code>
Expand description
will parse a number in text form to a number
Complete version: can parse until the end of input.
WARNING: Deprecated, replaced with
winnow::character::dec_uint