static L virtualCountList(int n) { ret new RandomAccessAbstractList() { public int size() { ret n; } public Int get(int i) { ret i; } }; }