lt

From RPTools Wiki
Revision as of 20:09, 15 March 2023 by Taustin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

lt() Function

This function compares provided numeric values and returns true(1) if the first is less than the second and the second less than the third and so no. If any comparison fails, the function returns false.

Usage

lt(n1, n2, ...)

Parameters

  • n1 - Number
  • n2+ - Number

Example

[r: lt(1,2)]
[r: lt(-1,1,2)]
[r: lt(0,1,1)]

Returns:

1
1
0

See Also