func append(Element)
func insert(Element, at: Int)
func replaceSubrange <C>(Range<Int>, with: C)
func replaceSubrange <C, R>(R, with: C)
func reserveCapacity (Int)
Availability
Technology
mutating func insert<C>(contentsOf newElements: C, at i: Int
) where C : Collection
, Element == C.Element
newElements
The new elements to insert into the collection. コレクションへ挿入される新しいいくらかの要素。
i
The position at which to insert the new elements. index
must be a valid index of the collection.
そこで新しいいくらかの要素が挿入されるところの位置。index
はコレクションの有効なインデックスでなければなりません。
The new elements are inserted before the element currently at the specified index. If you pass the collection’s end
property as the index
parameter, the new elements are appended to the collection.
新しいいくらかの要素が、指定されたインデックスでの現在の要素の前に挿入されます。あなたがコレクションのend
プロパティをindex
パラメータとして渡すならば、いくらかの新しい要素がコレクションに追加されます。
Here’s an example of inserting a range of integers into an array of the same type: ここに整数の範囲を同じ型の配列へ挿入する例があります:
Calling this method may invalidate any existing indices for use with this collection. このメソッドを呼び出すことは、このコレクションで使うためのあらゆる既存のインデックスを無効にします。
Complexity: O(n + m), where n is length of this collection and m is the length of new
. If i == end
, this method is equivalent to append(contents
.
計算量:O(n + m)、ここでnは配列の長さです、そしてmはnew
の長さです。i == end
ならば、このメソッドはappend(contents
に相当します。
func append(Element)
func insert(Element, at: Int)
func replaceSubrange <C>(Range<Int>, with: C)
func replaceSubrange <C, R>(R, with: C)
func reserveCapacity (Int)