Union Rangepub

Source
:union(pub) Range a
  | RangeBoth a a
  | RangeFrom a
  | RangeTo a
  | RangeFull
Description

Represents a half-open range over an ordered element type. Variants cover both-bounded, from-only, to-only, and unbounded forms.

Variants

| RangeBoth a a
| RangeFrom a
| RangeTo a
| RangeFull