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

Relation Funcs Guide

Relation Funcs in R

equals

Check if two values are equal.

R.equals.run(1, 1)
// true

gt

Check for 'greater than'.

R.gt.run(3, 2)
// true

gte

Check for 'greater than or equal'.

R.gte.run(3, 2)
// true

lt

Check for 'less than'.

R.lt.run(1, 2)
// true

lte

Check for 'less than or equal'.

R.lte.run(1, 2)
// true

max

Check for the max value between the two.

R.max.run(1, 2)
// 2

min

Check for the min value between the two.

R.min.run(1, 2)
// 1

Contribute on Github! Edit this section.