structs/MultiMap
-
class MultiMap<K,V>
-
-
static method new~multiMap → MultiMap<K,V>
-
method init~multiMap
-
static method new~multiMapWithCapa(capacity: UInt) → MultiMap<K,V>
-
method init~multiMapWithCapa(capacity: UInt)
-
method get~_super(key: K) → K
-
method put~_super(key: K, value: V) → Bool
-
method put(key: K, value: V) → Bool
-
method remove(key: K) → Bool
-
method getAll(key: K) → V
-
method get(key: K) → V
-
method iterator → Iterator<T>
-
class MultiMapValueIterator<K,V>
-
-
static method new(map: MultiMap<K,V>) → MultiMapValueIterator<K,V>
-
method init(map: MultiMap<K,V>)
-
method hasNext → Bool
-
method next → V
-
method hasPrev → Bool
-
method prev → V
-
method remove → Bool
-
V → Class
-
K → Class
-
map → MultiMap<K,V>
-
index → Int
-
sub → Iterator<T>