Create an instance of MyClass
Create an instance of MyClass
Value
An instance of MyClass
Methods
Method new()
Create a new MyClass
instance.
Method foo()
Do something.
Method bar()
Do something else.
Method clone()
The objects of this class are cloneable with this method.
Usage
MyClass$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.
Examples
MyClass$new()$bar()
#> NULL
## ------------------------------------------------
## Method `MyClass$foo`
## ------------------------------------------------
MyClass$new()$foo()
#> NULL