static L listGetOrCreate_List(LL l, int i) { if (l == null) null; L a = get(l, i); if (a == null) listSet(l, i, a = new L); ret a; }