EnTT 4.0.0
Loading...
Searching...
No Matches
tuple.hpp
1#ifndef ENTT_CORE_TUPLE_HPP
2#define ENTT_CORE_TUPLE_HPP
3
4#include "../stl/tuple.hpp"
5#include "../stl/type_traits.hpp"
6#include "../stl/utility.hpp"
7
8namespace entt {
9
15template<typename Type>
16struct is_tuple: stl::false_type {};
17
22template<typename... Args>
23struct is_tuple<stl::tuple<Args...>>: stl::true_type {};
24
29template<typename Type>
30inline constexpr bool is_tuple_v = is_tuple<Type>::value;
31
39template<typename Type>
40constexpr decltype(auto) unwrap_tuple(Type &&value) noexcept {
41 if constexpr(stl::tuple_size_v<stl::remove_reference_t<Type>> == 1u) {
42 return stl::get<0>(stl::forward<Type>(value));
43 } else {
44 return stl::forward<Type>(value);
45 }
46}
47
52template<typename Func>
53struct forward_apply: private Func {
59 template<typename... Args>
60 constexpr forward_apply(Args &&...args) noexcept(stl::is_nothrow_constructible_v<Func, Args...>)
61 : Func{stl::forward<Args>(args)...} {}
62
69 template<typename Type>
70 constexpr decltype(auto) operator()(Type &&args) noexcept(noexcept(stl::apply(stl::declval<Func &>(), args))) {
71 return stl::apply(static_cast<Func &>(*this), stl::forward<Type>(args));
72 }
73
75 template<typename Type>
76 constexpr decltype(auto) operator()(Type &&args) const noexcept(noexcept(stl::apply(stl::declval<const Func &>(), args))) {
77 return stl::apply(static_cast<const Func &>(*this), stl::forward<Type>(args));
78 }
79};
80
85template<typename Func>
87
88} // namespace entt
89
90#endif
Custom EnTT namespace for the standard template library.
Definition entt.hpp:5
EnTT default namespace.
Definition dense_map.hpp:25
constexpr bool is_tuple_v
Helper variable template.
Definition tuple.hpp:30
forward_apply(Func) -> forward_apply< stl::remove_cvref_t< Func > >
Deduction guide.
constexpr decltype(auto) unwrap_tuple(Type &&value) noexcept
Utility function to unwrap tuples of a single element.
Definition tuple.hpp:40
Utility class to forward-and-apply tuple objects.
Definition tuple.hpp:53
constexpr decltype(auto) operator()(Type &&args) noexcept(noexcept(stl::apply(stl::declval< Func & >(), args)))
Forwards and applies the arguments with the underlying function.
Definition tuple.hpp:70
constexpr forward_apply(Args &&...args) noexcept(stl::is_nothrow_constructible_v< Func, Args... >)
Constructs a forward-and-apply object.
Definition tuple.hpp:60
Provides the member constant value equal to true if a given type is a tuple, false otherwise.
Definition tuple.hpp:16