System.out.println(String.format("l(%d) = %d", index, (Integer)e));
index += 1;
}
// manipulate LArray
LIterator<?> l2 = l.map(new AbstractFunction1<Object, Object>(){
public Object apply(Object v1) {
return Integer.class.cast(v1) * 10;
}
});
LIterator<?> f = l.filter(new AbstractFunction1<Object, Object>(){