contains method

bool contains(
  1. num point
)

Whether point lies within [low, high] (inclusive). Audited: 2026-06-12 11:26 EDT

Implementation

bool contains(num point) => low <= point && point <= high;