pub fn sign<'a, I, C>(plus_sign: bool) -> impl Parser<I, Output = bool> + 'aExpand description
Parses a plus or minus sign and returns true if it is a minus sign.
By the default, plus signs are not allowed and it will be allowed if the argument plus_sign is true.