demos/counter.r

source("../object-inheritance.r", chdir = TRUE)

Counter <- Object$clone()$do({
  init <- function() self$counter <- 0
  count <- function() {
    self$counter <- self$counter + 1
    self$counter
  }
})
hadley/mutatr documentation built on May 17, 2019, 11:04 a.m.