I'm wondering why the STL doesn't overload their algorithm functions such that I can call them by simply providing a container and not taking the more verbose way to pass begin + end iterators. I of course understand why we also want to use an iterator pair for processing subsequences of a container / array, however, almost all calls to these methods are using a whole container:
vector<int> myVector = ...
std::for_each(myVector.begin(), myVector.end(), doSomething);
I'd find it more convenient, readable and maintainable to just write
vector<int> myVector = ...
std::for_each(myVector, doSomething);
Is there a reason STL doesn't provide these overloads? [EDIT: I don't mean to replace the interface with this restricted one but to also provide a container-based iterface!] Do they introduce ambiguity? I'm thinking about something like this:
template<typename _Container, typename _Funct>
inline _Funct for_each(_Container c, _Funct f) {
return for_each(std::begin(c), std::end(c), f);
}
Am I missing something?
x.begin(), and there's no benefit in providing a more more restrictive interface... And when it gets to output, it would make even less sense to provide anything but an iterator. – Kerrek SB Dec 22 '12 at 14:28for (auto const & x : myVector) { doSomething(x); }, which is plenty readable, and you're free to write your own convenience wrappers... but once you start, there's no end to asking why isn't XYZ also in the standard library. You have the building blocks, but somebody had to draw a line somewhere. – Kerrek SB Dec 22 '12 at 14:36for_eachjust was a simple example to get the point of what I want to say. I could also have writtenmin_elementin which case we don't want to write a range-based loop. – leemes Dec 22 '12 at 14:40