make_deparser {sketch} | R Documentation |
A constructor for a "typed" deparser
make_deparser(predicate_fun, deparse_fun)
predicate_fun |
A function that takes a "lang" object and return a logical. |
deparse_fun |
A function that takes a "lang" object and return a character string. |
A list; a deparser ready to be dispatched by "type".
str(make_deparser(predicate_fun = rlang::is_call, deparse_fun = deparse))