I\'d like to use the find() method, to catch a particular element of my std::map()
Now the return value is either the element I was looking for, or it it points to the e
The last element in any container is not the same as the containers end
iterator. The end
iterator is actually one step beyond the last element in the container.
That means you can rest easily, and use find
without worries. If the element you look for is the last element, you will get what you search for.