Check if the array is empty.
true if there are no elements in the array; false otherwise.
Complexity: O(1).
Array!int a; assert(a.empty); size_t pos = 0; a.insert(pos, 1); assert(!a.empty);
See Implementation
Check if the array is empty.