R.Funcs Reference
Here is the reference of the Funcs from R. You can use these Funcs in the way below:
Object val = R.add.run(1, 2);
Or
Func f = R.add.apply(1);
Object val = f.run(2);
Here is the reference of the Funcs from R. You can use these Funcs in the way below:
Object val = R.add.run(1, 2);
Or
Func f = R.add.apply(1);
Object val = f.run(2);
Contribute on Github! Edit this section.