[R] passing reference class method within the class as an argument

Eric Berger er|cjberger @end|ng |rom gm@||@com
Thu Dec 5 21:44:59 CET 2019


Here is the code of a reproducible example:

foo <- setRefClass("foo",
                   fields=list(x="numeric"),
                   methods=list(
                       initialize=function(a) {
                           x <<- a
                       },
                       funcA=function(f) {
                           f(x)+f(x)
                       },
                       funcB=function(y) {
                           y^2
                       },
                       funcC=function() {
                           u <- funcA(funcB)
                           u
                       }
                   ))

w <- foo(2)
z <- w$funcC()
print(z)

When I run this code it gives the following error:

Error in funcA(funcB) : object 'funcB' not found

How am I supposed to pass funcB?

Thanks,
Eric



More information about the R-help mailing list