/* Copyright (C) 2016 Murray Cumming * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see #include #include namespace sigc { namespace internal { /** * Get the type of a tuple without the first item. */ template struct tuple_type_cdr; // primary template is not defined // Partial specialization for tuples of at least one element: template struct tuple_type_cdr> { using type = std::tuple; }; namespace detail { template constexpr decltype(auto) tuple_cdr_impl(T&& t, std::index_sequence<0, I...>) { using cdr = typename tuple_type_cdr>::type; return cdr(std::get(std::forward(t))...); } } // detail namespace /** * Get the a tuple without the first item. * This is analogous to std::tuple_cat(). */ template constexpr decltype(auto) tuple_cdr(T&& t) { //We use std::decay_t<> because tuple_size is not defined for references. constexpr auto size = std::tuple_size>::value; static_assert(size != 0, "tuple size must be non-zero"); using seq = std::make_index_sequence; return detail::tuple_cdr_impl(std::forward(t), seq{}); } } // namespace internal } // namespace sigc #endif //SIGC_TUPLE_UTILS_TUPLE_CDR_H