I have a std::vector. I want to create iterators representing a slice of that vector. How do I do it? In pseudo C++:
class InterestingType; void doSomethi
You can represent those "slices" with a pair of iterators.