static T3 tripleMapB(T3 t, IF1 f) { ret t == null ? null : triple(t.a, f.get(t.b), t.c); } static T3 lambdaMapLike tripleMapB(IF1 f, T3 t) { ret tripleMapB(t, f); }