Skip to main content

Boolean.&&

&&that

Group: Logical
Aliases: and

Documentation

Computes the logical and (conjunction) of two booleans.

Arguments

  • that: The boolean to compute the conjunction of this with.

Examples

Computing the conjunction of False and True (to get False).

      False && True

Remarks

Short Circuiting

This method is implemented in a short-circuiting manner. This means that if this is False, it will no longer evaluate that.