svoid ensureCapacity(int n, L l) { if (l cast ArrayList) l.ensureCapacity(n); } svoid ensureCapacity(L l, int n) { ensureCapacity(n, l); }