FifoCache

First-in first-out element removal.

class FifoCache : Cache!(K, V)(
uint maxItems
K
V
) {}

Members

Functions

lookup
V* lookup(K key)
Undocumented in source. Be warned that the author may not have intended to support it.
put
void put(K key, V value)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

full
bool full;
Undocumented in source.

Meta