static VF1 precedentsMap_receiver(final Map map) { ret new VF1() { A last = null; void get(A a) { if (a == null) ret; if (last != null) map.put(a, last); last = a; } }; }