C++ Core Guidelines: Avoid Bounds Errors--Rainer Grimm
The series continue.
C++ Core Guidelines: Avoid Bounds Errors
by Rainer Grimm
From the article:
When you access an element outside a container of the STL, the result is not so promising. You effect may be an error or undefined behaviour. Undefined behaviour means all bets are open...