finished | R Documentation |
A parser has completely consumed its input when the input has satisfied
eof()
.
finished(o)
o |
Output from a parser. |
A logical value.
finished((literal("A") %then% eof())("A")) # TRUE
finished((literal("A"))("A")) # FALSE
finished((literal("A") %then% eof())(c("A","C"))) # FALSE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.