jfun.util.yield
Interface Iterable


public interface Iterable

Represents anything that supports iteration via yield.

Zephyr Business Solution

Author:
Ben Yu

Method Summary
 void iterate(Continuation y)
          Iterate through all the elements, call y.yield(elem) for each element.
 

Method Detail

iterate

void iterate(Continuation y)
Iterate through all the elements, call y.yield(elem) for each element.

Parameters:
y - the Continuation object.