Returns a bidirectional range over the container.
A bidirectional range that iterates over the container.
Set!int set; assert(set[].empty); set.insert(8); assert(!set[].empty); assert(set[].front == 8); assert(set[].back == 8);
See Implementation
Returns a bidirectional range over the container.