static TripleWeb tripleWeb(Symbol a, Symbol b, Symbol c) { new TripleWeb w; w.a = a; w.b = b; w.c = c; w.globalID(aGlobalIDObj()); ret w; } static TripleWeb tripleWeb(T3 t) { if (t == null) null; ret tripleWeb(t.a, t.b, t.c); }