WebSocketManagerLookup<K extends MultiKey, V> class
Web Socket Manager Lookup
Properties
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
isEmpty
→ bool
-
Returns
true if the lookup table contains no entries.
no setter
-
isNotEmpty
→ bool
-
Returns
true if the lookup table contains at least one entry.
no setter
-
keys
→ Iterable<K>
-
The keys.
no setter
-
length
→ int
-
The number of key/value pairs in the lookup table.
no setter
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
-
values
→ Iterable<V>
-
The values.
no setter
Methods
-
at(dynamic key, {required int index})
→ V?
-
Returns the value associated with
key at the column index.
-
clear()
→ void
-
Remove all entries in the lookup table.
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
remove(dynamic key)
→ V?
-
Removes a MultiKey and its associated value from the lookup table.
-
removeAll()
→ List<V>
-
Removes all entries from the lookup table and returns the associated values in the order of
their corresponding keys.
-
removeAt(dynamic key, {required int index})
→ V?
-
Removes a MultiKey and its associated value from the lookup table. The lookup is performed
on the column
index only.
-
toString()
→ String
-
A string representation of this object.
override