Hi all
do you know if it is any difference in performance when I access a std::map
element using find
or operator []
?
One returns an iterator
and the other a const ref
to the object.
Which one might be quicker becuase of all of the behind the scene of the STL?
Regards AFG