StaticLRUCache.opApply

Iterate over the entries in the cache. This does not count as an access.

  1. int opApply(int delegate(ref inout(Key), ref inout(Value)) yield)
    struct StaticLRUCache(Key, Value, size_t cacheSize)
    inout
    int
    opApply
    (
    scope int delegate
    (
    ref inout(Key)
    ,
    ref inout(Value)
    )
    yield
    )
  2. int opApply(int delegate(ref inout(Value)) yield)

Meta