static A assertNempty(A a) { ret assertNempty("empty", a); } static A assertNempty(S msg, A a) { if (empty(a)) fail(msg + ": " + a); ret a; }