C++ Iterator lifetime and detecting invalidation
- by DK.
Based on what's considered idiomatic in C++11:
should an iterator into a custom container survive the container itself being destroyed?
should it be possible to detect when an iterator becomes invalidated?
are the above conditional on "debug builds" in practice?
Details: I've recently been brushing up on my C++ and learning my way around C++11.…