R.apex

  • Docs
  • Tutorials
Docs Menu
  • Func
  • R.Funcs
    • Conversion Funcs
    • Arithmetic Funcs
    • Logic Funcs
    • Relation Funcs
    • Function Funcs
    • Comparator Funcs
    • Condition Funcs
    • List Funcs
    • String Funcs
    • Map Funcs
    • Utility Funcs
    • Database Funcs
  • R.Instance
    • Creation Methods
    • Conversion Methods
    • Methods

R.Funcs Guide

Func objects in R

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);

Contribute on Github! Edit this section.