DictNode

struct DictNode<Value>

One entry in the dictionary linked list.

Properties

let key: String

The dictionary key.

let value: Value

The value stored for key.

let next: DictNode<Value>?

The next node in the linked sequence, when present.