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