@metreeca/pipe - v0.9.11
    Preparing search index...

    Function range

    • Creates a pipe that yields a sequence of numbers within a range.

      Generates numbers in ascending order if start < end, or descending order if start > end. Returns an empty sequence if start === end.

      Parameters

      • start: number

        The starting value (inclusive)

      • end: number

        The ending value (exclusive)

      Returns Pipe<number>

      A pipe yielding numbers from start to end