FixedRingBuffer.opApply

iterate through elements with index

  1. int opApply(int delegate(ref T itm) @(safe) del)
  2. int opApply(int delegate(size_t i, ref T itm) @(safe) del)
    struct FixedRingBuffer(T, size_t N = 0, bool INITIALIZE = true)
    int
    opApply
    (
    scope int delegate
    (
    size_t i
    ,
    ref T itm
    )
    @safe
    del
    )

Meta