Void iterate(Lazy::List<a> xs, Void(a) action)
Arguments
xs: A lazy listaction: The action to perform
Usage
Iterate across a lazy list, performing action on each element. Note that if the list is infinite in size, and action never throws an Exception, this function will never return.