ICache.opIn_r

Obtains the time-to-index node for key.

class ICache
protected
opIn_r
(
hash_t key
)
out (node) { if (node) assert (*node !is null, "null pointer value was stored in key_to_node"); }

Parameters

key hash_t

key to lookup

Return Value

Type: TimeToIndex.Node**

pointer to the time-to-index node for key or null if not found.

Out: If found, it is safe to dereference the pointer to which the returned pointer points (*node is not null).

Meta