Interval.openEnd constructor

Interval.openEnd(
  1. DateTime start
)

An open ended interval starting from the start instant (inclusive).

Implementation

factory Interval.openEnd(DateTime start) => Interval(Instant(start), null);