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

Class Date

src/cosql/value.rs:26–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24// MM/DD/YYYY
25#[derive(Debug, Clone, PartialEq, Eq)]
26pub struct Date(pub u8, pub u8, pub u16);
27
28pub fn parse_date(input: &str) -> IResult<&str, Date> {
29 let (input, (d, _, m, _, y)) = tuple((

Callers 6

valueFunction · 0.85
parse_dateFunction · 0.85
test_date_parserFunction · 0.85
test_value_parserFunction · 0.85
test_expression_parserFunction · 0.85
test_attribute_parserFunction · 0.85

Calls

no outgoing calls

Tested by 4

test_date_parserFunction · 0.68
test_value_parserFunction · 0.68
test_expression_parserFunction · 0.68
test_attribute_parserFunction · 0.68