Returns whether the string is empty.
$(D_KEYWORD true) if the string is empty, $(D_KEYWORD false) otherwise.
String s; assert(s.empty); s.insertBack('K'); assert(!s.empty);
See Implementation
Returns whether the string is empty.