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((Any, Any, UnsafeMutableRawPointer?) -> Int, context: UnsafeMutableRawPointer?)
Sorts the receiver in ascending order as defined by the comparison function
compare
.
レシーバをcompare
によって定義されるとおりに昇順にソートします。
func sort(using: Selector)
Sorts the receiver in ascending order, as determined by the comparison method specified by a given selector.
レシーバを、ある与えられたセレクタによって指定される比較メソッドによって決定されるとおりに昇順にソートします。