R/roxygen_test.R

draw.Blob <- function (type = 'small') 
{
  'Something about blobs'
  type <<- 'small'
}

#' Blob
#'
#' Blah blah blah
#' 
#' @examples
#' Blob(type = 'small')
#' @export Blob
Blob <- setRefClass (
  Class = "Blob", 
  fields = list(type = 'character'),
  methods = list(draw = draw.Blob)
)
imanuelcostigan/roxygentest documentation built on May 18, 2019, 4:45 a.m.