Skip to main content

6 docs tagged with "Boolean Function"

View All Tags

And

Outputs True when all inputs are True. If any input is False, it outputs False.

Nand

Outputs False only when all inputs are True. If any input is False, it outputs True.

Nor

Outputs True when all inputs are False. Otherwise, outputs False.

Not

Outputs the opposite of the input boolean.

Or

Outputs True if any input is True. Otherwise outputs False.

Xor

InputsOutputsbool | Inputbool | Result