Removes all elements.
Set!int set; set.insert(5); assert(!set.empty); set.clear(); assert(set.empty);
See Implementation
Removes all elements.