Structure

Dictionary.Index

The position of a key-value pair in a dictionary. 辞書の中でのあるキー値ペアの位置。

Declaration 宣言

@frozen struct Index

Overview 概要

Dictionary has two subscripting interfaces: 辞書は2つの添え字インターフェイスを持ちます:

  1. Subscripting with a key, yielding an optional value: キーによる添え字、オプショナル値を生じます:

    
    v = d[k]!
  2. Subscripting with an index, yielding a key-value pair: インデックスによる添え字、キー値ペアを生じます:

    
    (k, v) = d[i]

Topics 話題

Instance Properties 様々なインスタンスプロパティ

Instance Methods インスタンスメソッド

Operator Functions 演算子関数

Relationships 関係

From Protocol 由来プロトコル

Conforms To 次に準拠

See Also 参照

Supporting Types 支援を行う型