AtomicDictionary
-
Declaration
Swift
public var count: Int { get } -
Declaration
Swift
public var keys: [Key] { get } -
Declaration
Swift
public var values: [Value] { get }
-
Declaration
Swift
public func getValue(forKey key: Key) -> Value? -
Declaration
Swift
public func removeAll() -
Declaration
Swift
public func set(value: Value, forKey key: Key) -
Declaration
Swift
public subscript(key: Key) -> Value? { get set } -
Declaration
Swift
public convenience init(dictionaryLiteral elements: (Key, Value)...) -
Declaration
Swift
public func makeIterator() -> DictionaryIterator<Key, Value>
View on GitHub