A C++ type that represents a dictionary.
protocol CxxDictionary<Key, Value>
C++ standard library types such as std::map and std::unordered_map conform to this protocol.
std::map
std::unordered_map
associatedtype Key
associatedtype RawIterator : UnsafeCxxInputIterator
associatedtype Value
subscript(Self.Key) -> Self.Value?