meta-for IntSize also as Cl, S {
static A assertNempty(S msg default "", A a) {
if (empty(a)) fail(joinNemptiesWithColon(msg, str(a)));
ret a;
}
}
/*static A assertNempty(A a) {
ret assertNempty("empty", a);
}
static A assertNempty(S msg, A a) {
if (empty(a)) fail(msg + ": " + a);
ret a;
}*/