static ItIt constIterator(A a) { ret new ItIt { public bool hasNext() { true; } public A next() { ret a; } }; }