The position of a key-value pair in a dictionary.
SDK
- Xcode 8.3+
Framework
- Swift Standard Library
Declaration
@frozen struct Index
Overview
Dictionary has two subscripting interfaces:
Subscripting with a key, yielding an optional value:
v = d[k]!
Subscripting with an index, yielding a key-value pair:
(k, v) = d[i]