Searched refs:first_impl (Results 1 – 1 of 1) sorted by relevance
6 template<class F, class ...Rest> struct first_impl { typedef F type; }; argument7 template<class ...Args> using first = typename first_impl<Args...>::type;