r6extended: extended R6 class

Description Usage Format Value Examples

Description

extended R6 class

Usage

1

Format

R6Class object.

Value

Object of R6Class

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# make new
ext <- r6extended$new()

# what is there?
ext$ls()

# getting things (wherever they are, also private stuff)
ext$get("options")
ext$get("hashes")

# messages
ext$message("Please note ...")
ext$options$verbose <- FALSE
ext$message("Please note ...")

# warning
ext$warning("Beware! ...")

# build in hashing
ext$hash_do()
ext$hash_get("options")

# debugging
ext$debug()
private$hash()
self$ls()

petermeissner/r6extended documentation built on May 25, 2019, 1:55 a.m.