Contents

sortedArray(options:usingComparator:)

Returns an array that lists the receiving ordered set’s elements in ascending order, as determined by the comparison method specified by a given NSComparator block.

Declaration

func sortedArray(options opts: NSSortOptions = [], usingComparator cmptr: (Any, Any) -> ComparisonResult) -> [Any]

Parameters

  • opts:

    A bitmask that specifies the options for the sort (whether it should be performed concurrently and whether it should be performed stably).

  • cmptr:

    A comparator block.

Return Value

An array that lists the receiving ordered set’s elements in ascending order, as determined by the comparison method specified cmptr.

See Also

Creating a Sorted Array