Instance Propertyscinfu.swiftsoup 2.8.7SwiftSoup
values
SimpleDictionary.swift:14var values: SimpleDictionary<KeyType, ValueType>.DictionaryType { get }
var values: SimpleDictionary<KeyType, ValueType>.DictionaryType { get }
import SwiftSoup
class SimpleDictionary<KeyType, ValueType> where KeyType : Hashable
typealias DictionaryType = [KeyType : ValueType]
init()
var count: Int { get }
func contains(_ key: KeyType) -> Bool
func get(_ key: KeyType) -> ValueType?
func put(_ value: ValueType, forKey key: KeyType)
func remove(_ key: KeyType)