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 nonmutating set }
Parameters パラメータ
i
Discussion 解説
The following example uses the buffer pointer’s subscript to access and modify the elements of a mutable buffer pointing to the contiguous contents of an array: 以下の例は、バッファポインタのもつ添え字を使うことで、配列の隣接内容を指している可変バッファの要素にアクセスして修正します。
Note 注意
Bounds checks for i
are performed only in debug mode.
i
に対する境界検査は、デバッグモードでのみ実行されます。