Function group boolean

Function group has those functions and groups:

  • Group compare - Compatison functions
    • Function = - Compare two value and return true if both are equals.
    • Function != - Compare two value and return true if both are not equals.
    • Function < - Compare two value and return true if the first is smaller than the second.
    • Function <= - Compare two value and return true if the first is smaller or eqauls than the second.
    • Function >= - Compare two value and return true if the first is greater or eqauls than the second.
    • Function > - Compare two value and return true if the first is greater than the second.
  • Group logical - Logical function
    • Function and - Return true if all the arguments are true, nothing if there is a non boolean argument and false if there is a false argument.
    • Function or - Return true if any of the arguments are true, nothing if there is a non boolean argument and false if all the arguments are false.
    • Function xor - Return true if one, and only one, of the argument is true.
    • Function not - Return false if the argument is true and true if the argument is false.

Use additional help with a function name to see more details about the function.