Iterable

Implementing this interface allows an object to be the target of the "for-each loop" statement. @param (T) the type of elements returned by the iterator

  1. interface Iterable(T)
    interface Iterable (
    T
    ) {}
  2. interface Iterable(K, V)

Members

Functions

opApply
int opApply(int delegate(ref T) dg)
Undocumented in source.

Meta