or is a short-circuiting Boolean macro.

Syntax

(or expr...)

Semantics

  • Arguments are evaluated left to right.
  • Evaluation stops as soon as True is reached.
  • Use boolean-or when you need an ordinary function instead.

Example

(or cached? cheap? forced?)