Pacote
    Preparing search index...

    Function windowed

    • Returns a snapshot array of a window of the provided size sliding along the provided array with the provided step.

      Both size and step must be positive and can be greater than the number of elements in this collection.

      Inspired by Kotlin's windowed method.

      Type Parameters

      • T

      Parameters

      • size: number

        The number of elements to take in each window.

      • Optionalstep: number

        The number of elements to move the window forward by on an each step. Defaults to 1.

      • array: readonly T[]

        The array the window slides along.

      Returns T[][]

      Snapshot array of the window sliding along the provided array.

      import { windowed } from '@pacote/array'

      const array = [1, 2, 3, 4]

      windowed(2, array) // => [[1, 2], [2, 3], [3, 4]]
      windowed(3, array) // => [[1, 2, 3], [2, 3, 4]]
      windowed(2, 2, array) // => [[1, 2], [3, 4]]