Description Usage Arguments Value Examples
View source: R/is_personfiles.R
This function checks if object
is of class personfiles
.
1 | is_personfiles(object)
|
object |
Any R object. |
A boolean, the answer to the question if object
is of class
personfiles
.
1 2 3 4 5 6 | ### A valid object.
folder <- list()
class(folder) <- "personfiles"
is_personfiles(folder)
### An invalid object.
is_personfiles(list())
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.