StringSorter.sort

Sorts a range of the elements in an array.

  1. inout(void) sort(inout(char)[][] array)
  2. inout(void) sort(inout(char)[][] array, size_t index, size_t count)
    class StringSorter
    inout(void)
    sort
    (
    ref inout(char)[][] array
    ,,)

Parameters

array inout(char)[][]

The array of strings to sort.

index size_t

The starting index of the range.

count size_t

The number of elements in the range.

Meta