static L ai_postTriple_multi(S a, S b, Collection c) { new L webIDs; for (S s : unnull(c)) addIfNotNull(webIDs, ai_postTriple(a, b, s)); ret webIDs; } static L ai_postTriple_multi(Collection a, S b, S c) { new L webIDs; for (S s : unnull(a)) addIfNotNull(webIDs, ai_postTriple(s, b, c)); ret webIDs; }