@corefunc/corefunc
    Preparing search index...

    Function arraySortQuick

    • Type Parameters

      • T

      Parameters

      • items: T[]

        Array of items to sort.

      • Optionalleft: number = 0

        Left index boundary.

      • Optionalright: number = ...

        Right index boundary.

      • Optionalcompare: (alpha: T, beta: T) => number = ...

      Returns T[]

      The sorted array.

      arraySortQuick

      Sort an array using the quick sort algorithm (in place).