A range of the collection’s indices. The bounds of the range must be valid indices of the collection. コレクションのもつインデックスのある範囲。この範囲の境界は、コレクションの有効なインデックスでなければなりません。
Subscript
subscript(_:)
Accesses a contiguous subrange of the collection’s elements.
コレクションのもついくらかの要素からなるある連続した下位範囲にアクセスします。
Availability
- iOS 14.5+
- iPadOS 14.5+
- macOS 10.10+
- Mac Catalyst 14.5+
- tvOS 14.5+
- watchOS 7.4+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
subscript(bounds: Range
<Base.Index
>) -> Slice
<LazySequence
<Base>> { get }
Available when
Base
conforms to Collection
.
Base
がCollection
に準拠する時に利用可能です。
Parameters パラメータ
bounds
Discussion 解説
The accessed slice uses the same indices for the same elements as the original collection. Always use the slice’s start
property instead of assuming that its indices start at a particular value.
アクセスされるスライス(切り取り)は、同じ要素に対して元のコレクションと同じインデックスを使います。常にスライスのstart
プロパティを使ってください、それのインデックスが特定の値で始まると決めてかかるのではなく。
This example demonstrates getting a slice of an array of strings, finding the index of one of the strings in the slice, and then using that index in the original array. この例は文字列からなる配列のあるスライスの取得を実演します、スライスの中の文字列の1つのインデックスを見つけて、それからそのインデックスを元の配列において使います。
Complexity: O(1) 計算量:O(1)