Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

is.R6

Is an object an R6 Class Generator or Object?


Description

Checks for R6 class generators and R6 objects.

Usage

is.R6(x)

is.R6Class(x)

Arguments

x

An object.

Value

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.

Examples

class_generator <- R6Class()
object <- class_generator$new()

is.R6Class(class_generator)
is.R6(class_generator)

is.R6Class(object)
is.R6(object)

R6

Encapsulated Classes with Reference Semantics

v2.5.0
MIT + file LICENSE
Authors
Winston Chang [aut, cre]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.