Home | History | Annotate | Download | only in debug

Lines Matching full:_int

262   template<std::size_t _Int, typename _Tp, std::size_t _Nm>
266 static_assert(_Int < _Nm, "index is out of bounds");
268 _S_ref(__arr._M_elems, _Int);
271 template<std::size_t _Int, typename _Tp, std::size_t _Nm>
275 static_assert(_Int < _Nm, "index is out of bounds");
276 return std::move(get<_Int>(__arr));
279 template<std::size_t _Int, typename _Tp, std::size_t _Nm>
283 static_assert(_Int < _Nm, "index is out of bounds");
285 _S_ref(__arr._M_elems, _Int);
297 template<std::size_t _Int, typename _Tp, std::size_t _Nm>
298 struct tuple_element<_Int, __debug::array<_Tp, _Nm>>
300 static_assert(_Int < _Nm, "index is out of bounds");