Equations

And

Validates all values on being true.

  • And(values[])

Returns true all values are true.

Return Type: Boolean

Compare

Checks if input1 is below, equal to or above input2.

  • Compare(input1, input2)

Returns a list with booleans.

Return Type: NumberOrTable

Equals

Compares two values and returns whether or not the values are equal.

  • Equals(value1, value2)

Returns true when the values are equal.

Return Type: Boolean

IfNull

Sets the defaultValue if the value is nil.

  • IfNull(value, defaultValue)

Returns the value of defaultValue when value is nil.

Return Type: Dynamic

IsBiggerOrSmallerThan

Checks if the value is bigger than highValue or smaller then lowValue.

  • IsBiggerOrSmallerThan(value, highValue, lowValue)

Returns true the value is bigger than highValue or smaller then lowValue.

Return Type: Boolean

IsBiggerThan

Checks if input1 is bigger than input2.

  • IsBiggerThan(input1, input2)

Returns true input1 is bigger than input2.

Return Type: Boolean

IsFalse

Validates all values on being false.

  • IsFalse(values[])

Returns true all values are false.

Return Type: Boolean

IsNotNull

Checks if the value is not null.

  • IsNotNull(value)

Returns true if the value is not null.

Return Type: Boolean

IsNull

Checks if the value is null.

  • IsNull(value)

Returns true if the value is null.

Return Type: Boolean

IsSmallerThan

Checks if input1 is smaller than input2.

  • IsSmallerThan(input1, input2)

Returns true if input1 is smaller than input2.

Return Type: Boolean

IsTrue

Validates all values on being true.

  • IsTrue(values[])

Returns true all values are true.

Return Type: Boolean

Not

Validates all values on being false.

  • Not(values[])

Returns true all values are false.

Return Type: Boolean

NotEquals

Compares two values and returns whether or not the values are different.

  • NotEquals(value1, value2)

Returns true when the values are not equal.

Return Type: Boolean

Or

Validates if any of the values is true.

  • Or(values[])

Returns true if any of the all values is true.

Return Type: Boolean

Last updated