LIterator<?> f = l.filter(new AbstractFunction1<Object, Object>(){
public Object apply(Object v1) {
return Integer.class.cast(v1) % 2 == 0;
}
});
LArray s = l.slice(2);
// Build LArray
LIntArrayBuilder b = new LIntArrayBuilder();
for(int i=0; i<10; i += 3)
b.append(i);