Functions on Boolean values
Boolean.And(Boolean)→Boolean
Result: The And function returns "True" if both values are "True".
Boolean.Equiv(Boolean)→Boolean
Result: The Equiv function returns "True" if both values are "True" or both values are "False".
Boolean.Imply(Boolean)→Boolean
Result: The Imply function always returns "True" for the second value if the first value is "True".
Boolean.Not→Boolean
Result: The Not function returns the inverse of the truth value.
Boolean.Or(Boolean)→Boolean
Result: The Or function returns "True" if at least one of the two values is "True".
Boolean.XOr(Boolean)→Boolean
Result: The XOr function returns "True" if exactly one of the two values is "True".