Dictionary.Index
The position of a key-value pair in a dictionary.
Declaration
@frozen struct IndexOverview
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]