var sortedArrayHint : Data
Analyzes the array and returns a “hint” that speeds the sorting of the array when the hint is supplied to
sortedArray(_:context:hint:)
.
配列を分析して「ヒント」を返します、それは、そのヒントがsortedArray(_:context:hint:)
に提供される場合この配列のソートをはかどらせるものです。
func sortedArray ((Any, Any, UnsafeMutableRawPointer?) -> Int, context: UnsafeMutableRawPointer?) -> [Any]
Returns a new array that lists the receiving array’s elements in ascending order as defined by the comparison function
comparator
.
ある配列を返します、それは、受け手側の配列の持つ要素を昇順で比較関数comparator
によって定義されるとおりに列記するものです。
func sortedArray ((Any, Any, UnsafeMutableRawPointer?) -> Int, context: UnsafeMutableRawPointer?, hint: Data?) -> [Any]
Returns a new array that lists the receiving array’s elements in ascending order as defined by the comparison function
comparator
.
ある配列を返します、それは、受け手側の配列の持つ要素を昇順で比較関数comparator
によって定義されるとおりに列記するものです。
func sortedArray (using: [NSSortDescriptor]) -> [Any]
Returns a copy of the receiving array sorted as specified by a given array of sort descriptors.
与えられたソート記述子の配列によって指定された通りにソートされた受け手側の配列のコピーを返します。
func sortedArray (using: Selector) -> [Any]
Returns an array that lists the receiving array’s elements in ascending order, as determined by the comparison method specified by a given selector.
ある配列を返します、それは受け手側の配列の持つ要素を昇順で列記します、与えられたセレクタによって指定される比較メソッドで決定されるとおりにです。
func sortedArray (options: NSSortOptions, usingComparator : (Any, Any) -> ComparisonResult) -> [Any]
Returns an array that lists the receiving array’s elements in ascending order, as determined by the comparison method specified by a given
NSComparator
block.
新しい配列を返します、それは、受け手側の配列の持つ要素を昇順で、与えられたNSComparator
ブロックによって指定される比較メソッドで決定されるとおりに列記するものです。
typealias Comparator
Defines the signature for a block object used for comparison operations.
比較演算に使われるブロックオブジェクトに対するシグネチャを定義します。