-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
obj_type, obj_desc, and obj_friendly_type #458
Comments
This would only use switchpatch. Needs to have C backend for use elsewhere in package (and eventually in exported API) If this existed, I think |
See also pillar: https://github.com/r-lib/pillar/blob/master/R/type-sum.R And I have this code in local ggplot2 branch: obj_desc <- function(x) {
if (isS4(x)) {
paste0("an S4 object with class ", class(x)[[1]])
} else if (is.object(x)) {
if (is.data.frame(x)) {
"a data frame"
} else if (is.factor(x)) {
"a factor"
} else {
paste0("an S3 object with class ", paste(class(x), collapse = "/"))
}
} else {
switch(typeof(x),
"NULL" = "a NULL",
character = "a character vector",
integer = "an integer vector",
logical = "a logical vector",
double = "a numeric vector",
list = "a list",
closure = "a function",
paste0("a base object of type", typeof(x))
)
}
} I don't think these functions should do dispatch, but they will have to handle S4 objects in a generic way. |
Adding |
also need a way to obtain the friendly type without an indefinite article. Perhaps an argument? obj_friendly_type(tibble())
#> [1] "a data frame"
obj_friendly_type(tibble(), article = FALSE)
#> [1] "data frame" |
e.g.
The text was updated successfully, but these errors were encountered: