Checks for R6 class generators and R6 objects.
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] TRUEis.R6(class_generator)#> [1] FALSEis.R6Class(object)#> [1] FALSEis.R6(object)#> [1] TRUE