removeTypes {types} | R Documentation |
Remove types from a language object
Description
These functions provide the same purpose, to remove type annotation from any language object.
Usage
removeTypes(x)
remove_types(x)
Arguments
x |
R language object |
Examples
# Function arguments can be annotated with types
f <- function(x = 1 ? numeric) {
x + 1
}
# The types can then be removed if needed
remove_types(f)
# A camelCase function is also available with the same behavior
removeTypes(f)
# They also works on quoted code
remove_types(quote(x + 1 ? numeric))
# Or expressions
remove_types(expression(x + 1 ? numeric))
[Package types version 1.0.0 Index]