Storage<K, V> class abstract

Implementers

Constructors

Storage()

Properties

capacity int
no setter
hashCode int
The hash code for this object.
no setterinherited
keys List<K>
no setter
length int
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
values List<CacheEntry<K, V>>
no setter

Methods

clear() → void
containsKey(K key) bool
get(K key) CacheEntry<K, V>?
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(K key) → void
set(K key, CacheEntry<K, V> value) Storage
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](K key) CacheEntry<K, V>?
operator []=(K key, CacheEntry<K, V> value) → void