Home | History | Annotate | Download | only in include

Lines Matching full:__tail

240       constexpr _Tuple_impl(const _Head& __head, const _Tail&... __tail)
241 : _Inherited(__tail...), _Base(__head) { }
246 constexpr _Tuple_impl(_UHead&& __head, _UTail&&... __tail)
247 : _Inherited(std::forward<_UTail>(__tail)...),
278 const _Head& __head, const _Tail&... __tail)
279 : _Inherited(__tag, __a, __tail...),
286 _UHead&& __head, _UTail&&... __tail)
287 : _Inherited(__tag, __a, std::forward<_UTail>(__tail)...),