Warning: session_start(): open(/var/lib/php/sessions/sess_m9bgpgv19t6u3gtuhdlaam7ncc, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
sclass EnglishDateParser > DateStructures {
bool assumeFuture = true; // e.g. for "tuesday" [not used]
LS tok;
SomeDate parse(S s) null {
tok = javaTok(s);
for (int i : codeTokenIndices(tok))
print(asList(parseNumber(ListAndIndex(tok, i))));
}
ItIt> parseNumber(ListAndIndex toParse) {
ret mapI_nonNulls(pwt_followingTokens(1, 2, toParse),
p -> isInteger(p!) ? p.withValue(parseInt(p!)) : null);
}
}