func replaceObject (at: Int, with: Any)
Replaces the object at
index
with anObject
.
index
でのオブジェクトをanObject
で置き換えます。
func replaceObjects (in: NSRange, withObjectsFrom : [Any], range: NSRange)
Replaces the objects in the receiving array specified by one given range with the objects in another array specified by another range.
受け手側の配列の中の一方の与えられた範囲によって指定されるオブジェクトを、別の配列の中の他方の範囲によって指定されるオブジェクトで置き換えます。
func replaceObjects (in: NSRange, withObjectsFrom : [Any])
Replaces the objects in the receiving array specified by a given range with all of the objects from a given array.
受け手側の配列の中のある与えられた範囲によって指定されるオブジェクトを、ある与えられた配列からのオブジェクトの全てで置き換えます。
func setArray ([Any])
Sets the receiving array’s elements to those in another given array.
受け手側の配列のもつ要素を、別の与えられた配列の中のそれらに設定します。