R6 class for handling the various mutaters
Public fields
muts
(list) list of mutaters
Methods
print method for mutaters
objects
Method new()
Create a new mutaters object
Returns
A new mutaters
object
Method random()
randomly select a mutater
Method clone()
The objects of this class are cloneable with this method.
Usage
mutaters$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.
Examples
if (FALSE) { # \dontrun{
x <- mutaters$new()
x
# select mutater by name
x$muts$bool_false2true
# fetch a random mutater
z <- x$random()
z
z$name
z$description
z$from
z$to
} # }