sprunk-engine
    Preparing search index...
    Index

    Constructors

    Methods

    • Returns the index of the closest (lower) element in an array sorted in ascending order

      Type Parameters

      • T

      Parameters

      • array: T[]
      • target: T
      • compare: (a: T, b: T) => number

        A function that compares two elements (it should return a negative number if a < b, 0 if a = b, and a positive number if a > b)

      Returns number

    • Generate all the possible combinations of a given array

      Type Parameters

      • T

      Parameters

      • array: T[]

        The input array

      • length: number

        Amount of elements in each combination

      Returns T[][]

      An array of combinations

    • Remove an element from an array

      Type Parameters

      • T

      Parameters

      • array: T[]

        The input array

      • element: T

        The element to remove

      Returns void