The position of the element to access. i
must be in the range 0..<count
.
アクセスする要素の位置。i
は、範囲0..<count
の中でなければなりません。
Subscript
subscript(_:)
Accesses the element at the specified position.
指定された位置で要素にアクセスします。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 6.3+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
subscript(i: Int
) -> Element { get }
Parameters パラメータ
i
Discussion 解説
The following example uses the buffer pointer’s subscript to access every other element of the buffer: 以下の例は、バッファポインタの添え字を使うことで、そのバッファのすべての他の要素にアクセスします:
Note 注意
Bounds checks for i
are performed only in debug mode.
i
に対する境界検査は、デバッグモードでのみ実行されます。