equals
Check if two values are equal.
R.equals.run(1, 1)
// true
Check if two values are equal.
R.equals.run(1, 1)
// true
Check for 'greater than'.
R.gt.run(3, 2)
// true
Check for 'greater than or equal'.
R.gte.run(3, 2)
// true
Check for 'less than'.
R.lt.run(1, 2)
// true
Check for 'less than or equal'.
R.lte.run(1, 2)
// true
Check for the max value between the two.
R.max.run(1, 2)
// 2
Check for the min value between the two.
R.min.run(1, 2)
// 1
Contribute on Github! Edit this section.