6 template <
class _Ty,
size_t _Size>
9 _Ty&
ZerothIndex() {
return std::array<_Ty, _Size>::operator[](0); }
12 assert(_Pos != 0 &&
"not allowed to access zeroth element");
13 return std::array<_Ty, _Size>::operator[](_Pos);
17 assert(_Pos != 0 &&
"not allowed to access zeroth element");
18 return std::array<_Ty, _Size>::operator[](_Pos);