Skip to main content
Version: Next

And

Logical And.

Description

The and of a set of operands is true if and only if all of its operands are true.

Inputs

  • a (Boolean): First operand.
  • b (Boolean): Second operand.

Outputs

  • a && b (Boolean): true if both a and b are true. false otherwise.