Nui
Loading...
Searching...
No Matches
tuple_push_front.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <tuple>
4
5namespace Nui::Detail
6{
7 template <typename Tuple, typename Elem>
9 {};
10
11 template <typename Elem, typename... List>
12 struct TuplePushFront<std::tuple<List...>, Elem>
13 {
14 using type = std::tuple<Elem, List...>;
15 };
16
17 template <typename Tuple, typename Elem>
19}
Definition rpc_hub.hpp:23
static constexpr auto extractJsonMember(nlohmann::json const &json) -> decltype(auto)
Definition rpc_hub.hpp:29
typename TuplePushFront< Tuple, Elem >::type TuplePushFront_t
Definition tuple_push_front.hpp:18
std::tuple< Elem, List... > type
Definition tuple_push_front.hpp:14
Definition tuple_push_front.hpp:9