TotalContainer.opSlice
Range opSlice()Returns a range that iterates over all elements of the container, in a container-defined order. The container should choose the most convenient and fast method of iteration for opSlice().
Complexity: log(n)
Range opSlice(size_t a, size_t b)Returns a range that iterates the container between two specified positions.
Complexity: log(n)