true(
)
The true( function returns true.
Parameters
No parameters.
Description
This function always returns true.
true() ☞ -1
Note: This function is equivalent to:
-1
See Also
- and -- returns true if both operands are true.
- between( -- checks to see if a value is between two other values.
- boolstr( -- converts a Boolean value to text, either `"true"` or `"false"`.
- false( -- returns false.
- limit( -- checks to see if a value is between a minimum and maximum value. If it is, the value is returned unchanged. If it is below the minimum, the minimum value is returned. If it is above the maximum the maximum value is returned.
- not -- reverses a boolean value.
- not( -- reverses a Boolean value
- notbetween( -- checks to see if a value is *not* between two other values.
- or -- returns true if either operand is true, or false if both are false.
- switch( -- chooses from a list of values.
- xor -- returns true if one of the two parameters is true, false if neither or both are true.
History
10.0 | No Change | Carried over from Panorama 6.0. |