Tests whether array is empty.
Element type of array.
Built-in array.
$(D_KEYWORD true) if array has no elements, $(D_KEYWORD false) otherwise.
int[1] array; assert(!array.empty); assert(array[1 .. 1].empty);
See Implementation
Tests whether array is empty.