25 template<
typename... Elements,
typename NewElement, std::size_t... Indices>
27 const std::tuple<Elements...>& tuple, NewElement newElement, std::index_sequence<Indices...>)
29 return std::make_tuple(newElement, std::get<Indices>(tuple)...);
37 template<
typename... Elements,
typename NewElement>
38 constexpr auto push_front(
const std::tuple<Elements...>& tuple, NewElement newElement)