Instance Method
インスタンスメソッド
addObjects(from:)
Adds the objects contained in another given array to the end of the receiving array’s content.
別の与えられた配列の中に含まれるオブジェクトそれらをこの受け手側の配列の持つ内容の終わりに加えます。
Declaration
宣言
func addObjects(from otherArray: [Any])
Parameters
パラメータ
otherArray
An array of objects to add to the end of the receiving array’s content.
受け手側の配列のもつ内容の終わりに加えることになるオブジェクトの配列。
See Also
参照
Adding Objects
オブジェクトを追加する
func add(Any)
Inserts a given object at the end of the array.
与えられたオブジェクトを配列の終わりで挿入します。
func insert(Any, at: Int)
Inserts a given object into the array’s contents at a given index.
与えられたオブジェクトを配列の持つ内容へと与えられたインデックスで挿入します。
func insert([Any], at: IndexSet)
Inserts the objects in the provided array into the receiving array at the specified indexes.
提供された配列の中のオブジェクトそれらを受け手側の配列へとその指定されたインデックスそれらで挿入します。
Related Documentation
関連文書
func remove(Any)
Removes all occurrences in the array of a given object.
与えられたオブジェクトのその配列の中の全ての出現を除去します。
func setArray([Any])
Sets the receiving array’s elements to those in another given array.
受け手側の配列のもつ要素を、別の与えられた配列の中のそれらに設定します。