The subrange of the array to replace. The start and end of a subrange must be valid indices of the array. 置き換えられることになる配列の下位範囲。下位範囲の始まりと終わりは、配列の有効なインデックスでなければなりません。
replaceSubrange(_:with:)
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
mutating func replaceSubrange<C>(_ subrange: Range
<Int
>, with newElements: C) where Element == C.Element
, C : Collection
Parameters パラメータ
subrange
newElements
The new elements to add to the array. 配列に加えられることになる新しい要素ら。
Discussion 解説
This method has the effect of removing the specified range of elements from the array and inserting the new elements at the same location. The number of new elements need not match the number of elements being removed. このメソッドは、指定された範囲の要素を配列から取り除き、そして新しい要素を同じ場所に挿入する効果を持ちます。新しい要素の数は、削除される要素の数と一致する必要はありません。
In this example, three elements in the middle of an array of integers are replaced by the five elements of a Repeated<Int>
instance.
この例では、整数からなる配列の真ん中の3つの要素が、Repeated<Int>
インスタンスの5つの要素によって置き換えられます。
If you pass a zero-length range as the subrange
parameter, this method inserts the elements of new
at subrange
. Calling the insert(contents
method instead is preferred.
あなたがゼロ長範囲をsubrange
パラメータとして渡すならば、このメソッドはnew
の要素をsubrange
で挿入します。insert(contents
メソッドを代わりに呼ぶことが好まれます。
Likewise, if you pass a zero-length collection as the new
parameter, this method removes the elements in the given subrange without replacement. Calling the remove
method instead is preferred.
同様に、あなたがゼロ長コレクションをnew
パラメータとして渡すならば、このメソッドは与えられた下位範囲の中の要素を置き換えることなく削除します。remove
メソッドを代わりに呼ぶことが好まれます。
Complexity: O(n + m), where n is length of the array and m is the length of new
. If the call to this method simply appends the contents of new
to the array, this method is equivalent to append(contents
.
計算量:O(n + m)、ここでnは配列の長さです、そしてmはnew
の長さです。このメソッドへの呼び出しが単にnew
の内容を配列に追加するだけならば、このメソッドはappend(contents
と等しいです。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Adding Elements 要素の追加
func append(Element)
func insert(Element, at: Int)
func insert<C>(contentsOf : C, at: Int)
func replaceSubrange <C, R>(R, with: C)
func reserveCapacity (Int)