MCPcopy Create free account
hub / github.com/cosdata/cosdata / ws

Function ws

src/cosql/common.rs:15–20  ·  view source on GitHub ↗
(inner: F)

Source from the content-addressed store, hash-verified

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

Callers 15

parse_paren_expressionFunction · 0.70
parse_binary_conditionFunction · 0.70
parse_conditionFunction · 0.70
parse_ruleFunction · 0.70
parse_compute_clausesFunction · 0.70
parse_compute_clauseFunction · 0.70
parse_queryFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected