The new element to insert into the collection. コレクションに挿入されることになる新しい要素。
insert(_:at:)
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Base
conforms to RangeReplaceableCollection
.
Base
がRangeReplaceableCollection
に準拠する時に利用可能です。
Parameters パラメータ
newElement
i
The position at which to insert the new element.
index
must be a valid index into the collection. そこで新しい要素が挿入されることになる位置。index
はコレクションに対する有効なインデックスでなければなりません。
Discussion 解説
The new element is inserted before the element currently at the specified index. If you pass the collection’s end
property as the index
parameter, the new element is appended to the collection.
新しい要素は、指定されたインデックスでの現在の要素の前に挿入されます。あなたがコレクションのend
プロパティをindex
パラメータとして渡すならば、新しい要素がコレクションに追加されます。
Calling this method may invalidate any existing indices for use with this collection. このメソッドを呼び出すことは、このコレクションで使うためのあらゆる既存のインデックスを無効にします。
Complexity: O(n), where n is the length of the collection. If i == end
, this method is equivalent to append(_:)
.
計算量:O(n)、ここでnはコレクションの長さです。i == end
ならば、このメソッドはappend(_:)
に相当します。
Note 注意
This documentation comment was inherited from Range
.
この文書化コメントは、Range
から引き継がれました。