func exchangeObject (at: Int, withObjectAt : Int)
Exchanges the objects in the array at given indexes.
配列の中のオブジェクトをこれら与えられたインデックスで交換します。
func sort(using: [NSSortDescriptor])
Sorts the receiver using a given array of sort descriptors.
レシーバをソート記述子からなる与えられた配列を使ってソートします。
func sort(comparator: (Any, Any) -> ComparisonResult)
Sorts the receiver in ascending order using the comparison method specified by a given
Comparator
block.
レシーバを昇順にソートします、ある与えられたComparator
ブロックによって指定される比較メソッドを使います。
func sort(options: NSSortOptions, usingComparator : (Any, Any) -> ComparisonResult)
Sorts the receiver in ascending order using the specified options and the comparison method specified by a given
Comparator
block.
レシーバを昇順にソートします、指定されたオプションとある与えられたComparator
ブロックによって指定される比較メソッドを使います。
func sort((Any, Any, UnsafeMutableRawPointer?) -> Int, context: UnsafeMutableRawPointer?)
Sorts the receiver in ascending order as defined by the comparison function
compare
.
レシーバをcompare
によって定義されるとおりに昇順にソートします。