struct DictNode<Value>One entry in the dictionary linked list.Propertieslet key: StringThe dictionary key.let value: ValueThe value stored for key.let next: DictNode<Value>?The next node in the linked sequence, when present.