r-lib / R6

Encapsulated object-oriented programming for R
https://R6.r-lib.org
Other
407 stars 56 forks source link

show interface for member functions #76

Closed krlmlr closed 8 years ago

krlmlr commented 8 years ago
> cl <- R6Class("cl", public = list(cat = cat))
> cl
<cl> object generator
  Public:
    cat: function (..., file = "", sep = " ", fill = FALSE, labels = NULL, 
    clone: function (deep = FALSE) 
  Parent env: <environment: R_GlobalEnv>
  Locked objects: TRUE
  Locked class: FALSE
  Portable: TRUE
> cl$new()
<cl>
  Public:
    cat: function (..., file = "", sep = " ", fill = FALSE, labels = NULL, 
    clone: function (deep = FALSE) 
wch commented 8 years ago

Thanks!