*a.begin();That used to work but now as of C++11 we have the less kludgy:
*a.data();The spec says when it size() == 0 data() may or may not return a null pointer.
*a.begin();That used to work but now as of C++11 we have the less kludgy:
*a.data();The spec says when it size() == 0 data() may or may not return a null pointer.