The position of the element to access. position
must be a valid index of the collection that is not equal to the end
property.
アクセスする要素の位置。position
はコレクションの有効なインデックスで、end
プロパティと等しくないものでなければなりません。
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 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
subscript(position: Dictionary
<Key, Value>.Index
) -> Dictionary
<Key, Value>.Values
.Element
{ get set }
Parameters パラメータ
position
Index Index
Discussion 解説
For example, you can replace an element of an array by using its subscript. 例えば、あなたは配列の中のある要素をそれの添え字を使うことによって置き換えることができます。
You can subscript a collection with any valid index other than the collection’s end index. The end index refers to the position one past the last element of a collection, so it doesn’t correspond with an element. あなたは、そのコレクションの末尾インデックスの以外のあらゆる有効なインデックスで、コレクションに対して添え字を使うことができます。末尾インデックスは、あるコレクションの最後の要素を1つ過ぎた位置を参照します、それでそれはある要素に対応しません。
Complexity: O(1) 計算量:O(1)
Note 注意
This documentation comment was inherited from Mutable
.
この文書化コメントは、Mutable
から引き継がれました。