Skip to main content

Boolean.||

||that

Group: Logical
Aliases: or

Documentation

Computes the logical or (disjunction) of two booleans.

Arguments

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

Examples

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

      True || False

Remarks

Short Circuiting

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