static L pairList_forwardLookup(Collection> l, A a) { new L out; for (Pair p : unnull(l)) if (eq(p.a, a)) out.add(p.b); ret out; }