PriorityCache.CacheItem

A wrapper around the stored item

class PriorityCache(T)
protected
struct CacheItem {}

Members

Variables

key
hash_t key;

The item's key. Used to retrieve the nodes when two items are swapped to update the nodes with the new indices.

value
T value;

The object itself to be stored in the cache

Meta