Sign.empty

Checks whether or not every sign's line is an empty string.

class Sign
final @property @safe
bool
empty
()

Examples

if(!sign.empty) {
   sign[] = "";
   assert(sign.empty);
}

Meta