static ItIt iota_zero(final int n) { ret new ItIt() { int i = 0; public bool hasNext() { ret i < n; } public Int next() { ret i++; } }; }