We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Implement support to be able to detect and investigate S3 classes.
The text was updated successfully, but these errors were encountered:
The S3 constructor should be picked up by PaRe, and report this somehow.
# S3: structure chell <- structure(list(name = "Chell", age = 29), class = "Person") # S3: class morgan <- list(name = "Morgan", age = 28) class(morgan) <- "Person"
The following S3 method definitions should already be picked up:
Overload print:
print
print.person <- function(x, ...) { glue::glue("{x$name} is {x$age} years old.") }
Create custom generic doStuff:
doStuff
doStuff <- function(x) { UseMethod("doStuff") } doStuff.person <- function(x) { glue::glue("{x$name} does stuff.") }
doStuff and doStuff.person should already be picked up seperately.
doStuff.person
Sorry, something went wrong.
mvankessel-EMC
No branches or pull requests
Implement support to be able to detect and investigate S3 classes.
The text was updated successfully, but these errors were encountered: