Instance Method
インスタンスメソッド
add(_:)
Inserts a given object at the end of the array.
与えられたオブジェクトを配列の終わりで挿入します。
Declaration
宣言
func add(_ anObject: Any)
Parameters
パラメータ
anObject
The object to add to the end of the array’s content. This value must not be nil
.
配列の内容の終わりに追加することになるオブジェクト。この値は、nil
ではいけません。
See Also
参照
Adding Objects
オブジェクトを追加する
func addObjects(from: [Any])
Adds the objects contained in another given array to the end of the receiving array’s content.
別の与えられた配列の中に含まれるオブジェクトそれらをこの受け手側の配列の持つ内容の終わりに加えます。
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.
受け手側の配列のもつ要素を、別の与えられた配列の中のそれらに設定します。