Iterator.opApply

Iterate over a set of tokens and delimiters, exposing a token count starting at zero.

  1. int opApply(int delegate(ref const(T)[]) dg)
  2. int opApply(int delegate(ref int, ref const(T)[]) dg)
  3. int opApply(int delegate(ref int, ref const(T)[], ref const(T)[]) dg)
    class Iterator(T)
    int
    opApply
    (
    scope int delegate
    (
    ref int
    ,
    ref const(T)[]
    ,
    ref const(T)[]
    )
    dg
    )

Meta