Instance Propertyswift 6.1.2Swift
debugDescription
var debugDescription: String { get }var debugDescription: String { get }import Swift@frozen struct ValuesA view of a dictionary’s values.
@frozen struct Dictionary<Key, Value> where Key : HashableA collection whose elements are key-value pairs.
@frozen struct StringA Unicode string value that is a collection of characters.
var count: Int { get }The number of values in the dictionary.
var description: String { get }var endIndex: Dictionary<Key, Value>.Index { get }var isEmpty: Bool { get }var startIndex: Dictionary<Key, Value>.Index { get }subscript(position: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Values.Element { get set } func formIndex(after i: inout Dictionary<Key, Value>.Index) func index(after i: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Index func makeIterator() -> Dictionary<Key, Value>.Values.Iterator mutating func swapAt(_ i: Dictionary<Key, Value>.Index, _ j: Dictionary<Key, Value>.Index) @frozen struct Iteratortypealias Element = Value