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