R/R6.R

#' @import R6
R6Example = R6Class("R6Example",
  active = list(
    x = function() runif(1)
  )
)


#' @export
r6 = R6Example$new()
mllg/r6pkg documentation built on May 16, 2019, 3:13 p.m.