Instance Method インスタンスメソッド

replaceObjects(at:with:)

Replaces the objects in the receiving array at locations specified with the objects from a given array. 受け手側の配列の中の指定された位置でのオブジェクトを、ある与えられた配列からのオブジェクトで置き換えます。

Declaration 宣言

func replaceObjects(at indexes: IndexSet, 
               with objects: [Any])

Parameters パラメータ

indexes

The indexes of the objects to be replaced. 置き換えられることになるオブジェクトのインデックス。

objects

The objects with which to replace the objects in the receiving array at the indexes specified by indexes. The count of locations in indexes must equal the count of objects. それで受け手側の配列の中のオブジェクトをindexesによって指定されたインデックスで置き換えることになるオブジェクト。indexesの中の位置の総数は、objectsの総数と等しくなければなりません。

Discussion 議論

The indexes in indexes are used in the same order as the objects in objects. indexesの中のインデックスは、objectsの中のオブジェクトと同じ順序で使われます。

If objects or indexes is nil, this method raises an exception. objectsまたはindexesnilならば、このメソッドは例外を引き起こします。

See Also 参照

Replacing Objects オブジェクトを置き換える

Related Documentation 関連文書