Description Usage Arguments Value Examples
Checks for R6 class generators and R6 objects.
1 2 3 | is.R6(x)
is.R6Class(x)
|
x |
An object. |
A logical value.
is.R6Class
returns TRUE
when the input is an R6 class
generator and FALSE
otherwise.
is.R6
returns TRUE
when the input is an R6 object and
FALSE
otherwise.
1 2 3 4 5 6 7 8 | class_generator <- R6Class()
object <- class_generator$new()
is.R6Class(class_generator)
is.R6(class_generator)
is.R6Class(object)
is.R6(object)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.