1#ifndef ENTT_CORE_TUPLE_HPP
2#define ENTT_CORE_TUPLE_HPP
15template<
typename Type>
22template<
typename... Args>
23struct is_tuple<std::tuple<Args...>>: std::true_type {};
29template<
typename Type>
39template<
typename Type>
41 if constexpr(std::tuple_size_v<std::remove_reference_t<Type>> == 1u) {
42 return std::get<0>(std::forward<Type>(value));
44 return std::forward<Type>(value);
52template<
typename Func>
59 template<
typename... Args>
60 constexpr forward_apply(Args &&...args)
noexcept(std::is_nothrow_constructible_v<Func, Args...>)
61 : Func{std::forward<Args>(args)...} {}
69 template<
typename Type>
70 constexpr decltype(
auto)
operator()(Type &&args)
noexcept(
noexcept(std::apply(std::declval<Func &>(), args))) {
71 return std::apply(
static_cast<Func &
>(*
this), std::forward<Type>(args));
75 template<
typename Type>
76 constexpr decltype(
auto)
operator()(Type &&args)
const noexcept(
noexcept(std::apply(std::declval<const Func &>(), args))) {
77 return std::apply(
static_cast<const Func &
>(*
this), std::forward<Type>(args));
85template<
typename Func>
constexpr bool is_tuple_v
Helper variable template.
forward_apply(Func) -> forward_apply< std::remove_reference_t< std::remove_cv_t< Func > > >
Deduction guide.
constexpr decltype(auto) unwrap_tuple(Type &&value) noexcept
Utility function to unwrap tuples of a single element.
Utility class to forward-and-apply tuple objects.
constexpr decltype(auto) operator()(Type &&args) noexcept(noexcept(std::apply(std::declval< Func & >(), args)))
Forwards and applies the arguments with the underlying function.
constexpr forward_apply(Args &&...args) noexcept(std::is_nothrow_constructible_v< Func, Args... >)
Constructs a forward-and-apply object.
Provides the member constant value to true if a given type is a tuple, false otherwise.