IntervalEntry<T> constructor

IntervalEntry<T>(
  1. num low,
  2. num high,
  3. T value
)

Creates an interval [low, high] (inclusive) labeled with value. Requires low <= high. Audited: 2026-06-12 11:26 EDT

Implementation

IntervalEntry(num low, this.high, this.value) : low = _validatedLow(low, high);