Iterator.opApply

Iterate over the set of tokens. This should really provide read-only access to the tokens, but D does not support that at this time.

  1. int opApply(int delegate(ref cstring) dg)
    class Iterator
    int
    opApply
    (
    scope int delegate
    ()
    dg
    )
  2. int opApply(int delegate(ref int, ref cstring) dg)
  3. int opApply(int delegate(ref int, ref cstring, ref cstring) dg)

Meta