R/GenerationContext.R

Defines functions GenerationContext

Documented in GenerationContext

GenerationContext <- function(targetFolder_s_1 = tempdir(),
                              overwrite_b_1 = FALSE,
                              verbosity_b_1 = FALSE,
                              useMarkers_b_1 = FALSE) {
  self <- environment()
  class(self) <- append('GenerationContext', class(self))

  if (!dir.exists(targetFolder_s_1))
    stop(targetFolder_s_1, ' must be an existing folder')

  self
}

Try the wyz.code.rdoc package in your browser

Any scripts or data that you put into this service are public.

wyz.code.rdoc documentation built on Oct. 6, 2021, 9:07 a.m.