true if for any dimension the length equals to 0, and false otherwise.
import mir.ndslice.topology : iota, canonical; auto s = iota(2, 3).canonical; assert(!s.anyEmpty); s.popFrontExactly!1(3); assert(s.anyEmpty);
See Implementation