validate_qryflow_parser | R Documentation |
This function checks that the passed object is a function and contains the arguments "x" and "..." - in that order. This is to help ensure users only register valid parsers.
validate_qryflow_parser(parser)
parser |
object to check |
Logical. Generates an error if the object does not pass all the criteria.
validate_qryflow_handler()
for the handler equivalent.
custom_func <- function(x, ...){
# Parsing Code Goes Here
}
validate_qryflow_parser(custom_func)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.