String Parser Builder
interface StringParserBuilder
Content copied to clipboard
Functions
on Each Char
Link copied to clipboard
abstract fun onEachChar(action: DateTimeParseResult.(char: Char, index: Int) -> StringParseAction)
Content copied to clipboard
Execute a block as each character in the string is encountered during parsing.
on Parsed
Link copied to clipboard
abstract fun onParsed(action: DateTimeParseResult.(parsed: String) -> Unit)
Content copied to clipboard
Perform an action when parsing succeeds.