Implies

Negates the first input and then computes the logical OR of the second input and the negated input.

In other words, if the first input is True and the second input is False, this node returns False. Otherwise, it returns True.

This function performs bitwise operations on numeric inputs.

1378

Inputs/Outputs

datatype_icon

x

The first input to the operation.

This input can be any data type that contains only Boolean values, numbers, or error clusters, such as an array of numbers or a cluster of Booleans. If this input is an error cluster, the node uses only the status element of the error cluster.

datatype_icon

y

The second input to the operation.

This input must be the same data type as x.

datatype_icon

x implies y?

The logical OR of y and of the logical negation of x.

Examples

x y x implies y?
T T T
T F F
F T T
F F T