Class IntegerSequence.Range

    • Constructor Detail

      • Range

        public Range​(int start,
                     int max,
                     int step)
        Creates a sequence ai, i < 0 < n where ai = start + i * step and n is such that an <= max and an+1 > max.
        Parameters:
        start - First value of the range.
        max - Last value of the range that satisfies the above construction rule.
        step - Increment.