The subrange of the collection to remove. The bounds of the range must be valid indices of the collection. 削除することになるコレクションの下位範囲。この範囲の境界は、コレクションの有効なインデックスでなければなりません。
Instance Method
インスタンスメソッド
remove
removeSubrange(_:)
Removes the specified subrange of elements from the collection.
いくらかの要素からなる指定された下位範囲をコレクションから削除します。
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 宣言
Available when
Base
conforms to RangeReplaceableCollection
.
Base
がRangeReplaceableCollection
に準拠する時に利用可能です。
Parameters パラメータ
bounds
Discussion 解説
Calling this method may invalidate any existing indices for use with this collection. このメソッドを呼び出すことは、このコレクションで使うためのあらゆる既存のインデックスを無効にします。
Complexity: O(n), where n is the length of the collection. 計算量:O(n)、ここでnはコレクションの長さです。
Note 注意
This documentation comment was inherited from Range
.
この文書化コメントは、Range
から引き継がれました。