Tells whether the container contains any elements.
Whether the container is empty.
Set!int set; assert(set.empty); set.insert(5); assert(!set.empty);
See Implementation
Tells whether the container contains any elements.