iter-fns - v0.13.0
    Preparing search index...

    Class RangeFrom

    An integer range that has no end.

    This should be constructed with Range.from.

    Implements

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Creates an integer half-open range [start,end), optionally with a step.

      Parameters

      • end: number

        open end for the range

      • step: number = 1

        how much to step by

      Returns Range

    • Creates an integer closed range [start,end], optionally with a step.

      Parameters

      • end: number

        closed end for the range

      • step: number = 1

        how much to step by

      Returns Range