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

insert(_:at:)

Inserts the objects in the array at the specified indexes. 配列の中のオブジェクトを指定されたインデックスで挿入します。

Declaration 宣言

func insert(_ objects: [Any], 
         at indexes: IndexSet)

Parameters パラメータ

objects

An array of objects to insert into the mutable ordered set. 可変の順序集合へと挿入するオブジェクトからなる配列。

indexes

The indexes at which the objects in objects should be inserted. The count of locations in indexes must equal the count of objects. それでobjectsの中のオブジェクトが挿入されるべきインデックスいくらか。indexesの中の位置の総数は、objectsの総数と等しくなければなりません。

Discussion 議論

Each object in objects is inserted into the receiving mutable ordered set in turn at the corresponding location specified in indexes after earlier insertions have been made. objectsの中の各オブジェクトは、受け手側の可変の順序集合へと順に、indexesにおいて指定される対応する位置で、より前の挿入がなされてしまった後に挿入されます。

See Also 参照

Adding, Removing, and Reordering Entries 登録項目の追加、除去、そして再配列