static L elementsAtIndex(int index, Collection> c) { L out = emptyList(c); for (L l : unnull(c)) out.add(get(l, index)); ret out; }