RangeInclusive constructor

const RangeInclusive(
  1. int start,
  2. int end
)

Implementation

const RangeInclusive(int start, int end)
    : assert(end != -1),
      super(start, end + 1);