(inner: F)
| 13 | } |
| 14 | |
| 15 | pub fn ws<'a, F, O>(inner: F) -> impl FnMut(&'a str) -> IResult<&'a str, O> |
| 16 | where |
| 17 | F: Fn(&'a str) -> IResult<&'a str, O> + 'a, |
| 18 | { |
| 19 | delimited(multispace0, inner, multispace0) |
| 20 | } |
| 21 | |
| 22 | pub fn parse_identifier(input: &str) -> IResult<&str, &str> { |
| 23 | recognize(pair( |
no outgoing calls
no test coverage detected