EnTT 3.13.0
Loading...
Searching...
No Matches
type_traits.hpp
1#ifndef ENTT_CORE_TYPE_TRAITS_HPP
2#define ENTT_CORE_TYPE_TRAITS_HPP
3
4#include <cstddef>
5#include <iterator>
6#include <tuple>
7#include <type_traits>
8#include <utility>
9#include "../config/config.h"
10#include "fwd.hpp"
11
12namespace entt {
13
18template<std::size_t N>
20 // unfortunately, doxygen cannot parse such a construct
21 : choice_t<N - 1>
22{};
23
25template<>
26struct choice_t<0> {};
27
32template<std::size_t N>
33inline constexpr choice_t<N> choice{};
34
43template<typename Type>
46 using type = Type;
47};
48
53template<typename Type>
55
60template<typename Type, typename = void>
61struct size_of: std::integral_constant<std::size_t, 0u> {};
62
64template<typename Type>
65struct size_of<Type, std::void_t<decltype(sizeof(Type))>>
66 : std::integral_constant<std::size_t, sizeof(Type)> {};
67
72template<typename Type>
73inline constexpr std::size_t size_of_v = size_of<Type>::value;
74
80template<typename Type, typename>
81using unpack_as_type = Type;
82
88template<auto Value, typename>
89inline constexpr auto unpack_as_value = Value;
90
95template<auto Value>
96using integral_constant = std::integral_constant<decltype(Value), Value>;
97
102template<id_type Value>
104
109template<typename... Type>
110struct type_list {
114 static constexpr auto size = sizeof...(Type);
115};
116
118template<std::size_t, typename>
120
127template<std::size_t Index, typename First, typename... Other>
128struct type_list_element<Index, type_list<First, Other...>>
129 : type_list_element<Index - 1u, type_list<Other...>> {};
130
136template<typename First, typename... Other>
137struct type_list_element<0u, type_list<First, Other...>> {
139 using type = First;
140};
141
147template<std::size_t Index, typename List>
149
151template<typename, typename>
153
160template<typename Type, typename First, typename... Other>
161struct type_list_index<Type, type_list<First, Other...>> {
163 using value_type = std::size_t;
165 static constexpr value_type value = 1u + type_list_index<Type, type_list<Other...>>::value;
166};
167
173template<typename Type, typename... Other>
174struct type_list_index<Type, type_list<Type, Other...>> {
175 static_assert(type_list_index<Type, type_list<Other...>>::value == sizeof...(Other), "Non-unique type");
177 using value_type = std::size_t;
179 static constexpr value_type value = 0u;
180};
181
186template<typename Type>
187struct type_list_index<Type, type_list<>> {
189 using value_type = std::size_t;
191 static constexpr value_type value = 0u;
192};
193
199template<typename Type, typename List>
201
208template<typename... Type, typename... Other>
210 return {};
211}
212
214template<typename...>
216
218template<>
222};
223
230template<typename... Type, typename... Other, typename... List>
231struct type_list_cat<type_list<Type...>, type_list<Other...>, List...> {
233 using type = typename type_list_cat<type_list<Type..., Other...>, List...>::type;
234};
235
240template<typename... Type>
241struct type_list_cat<type_list<Type...>> {
243 using type = type_list<Type...>;
244};
245
250template<typename... List>
251using type_list_cat_t = typename type_list_cat<List...>::type;
252
254namespace internal {
255
256template<typename...>
257struct type_list_unique;
258
259template<typename First, typename... Other, typename... Type>
260struct type_list_unique<type_list<First, Other...>, Type...>
261 : std::conditional_t<(std::is_same_v<First, Type> || ...), type_list_unique<type_list<Other...>, Type...>, type_list_unique<type_list<Other...>, Type..., First>> {};
262
263template<typename... Type>
264struct type_list_unique<type_list<>, Type...> {
265 using type = type_list<Type...>;
266};
267
268} // namespace internal
275template<typename List>
278 using type = typename internal::type_list_unique<List>::type;
279};
280
285template<typename List>
287
294template<typename List, typename Type>
296
302template<typename... Type, typename Other>
303struct type_list_contains<type_list<Type...>, Other>
304 : std::bool_constant<(std::is_same_v<Type, Other> || ...)> {};
305
311template<typename List, typename Type>
313
315template<typename...>
317
323template<typename... Type, typename... Other>
324struct type_list_diff<type_list<Type...>, type_list<Other...>> {
326 using type = type_list_cat_t<std::conditional_t<type_list_contains_v<type_list<Other...>, Type>, type_list<>, type_list<Type>>...>;
327};
328
333template<typename... List>
334using type_list_diff_t = typename type_list_diff<List...>::type;
335
337template<typename, template<typename...> class>
339
345template<typename... Type, template<typename...> class Op>
346struct type_list_transform<type_list<Type...>, Op> {
349};
350
356template<typename List, template<typename...> class Op>
358
363template<auto... Value>
368 static constexpr auto size = sizeof...(Value);
369};
370
372template<std::size_t, typename>
374
381template<std::size_t Index, auto Value, auto... Other>
382struct value_list_element<Index, value_list<Value, Other...>>
383 : value_list_element<Index - 1u, value_list<Other...>> {};
384
390template<auto Value, auto... Other>
391struct value_list_element<0u, value_list<Value, Other...>> {
393 using type = decltype(Value);
395 static constexpr auto value = Value;
396};
397
403template<std::size_t Index, typename List>
405
411template<std::size_t Index, typename List>
413
415template<auto, typename>
417
424template<auto Value, auto First, auto... Other>
425struct value_list_index<Value, value_list<First, Other...>> {
427 using value_type = std::size_t;
429 static constexpr value_type value = 1u + value_list_index<Value, value_list<Other...>>::value;
430};
431
437template<auto Value, auto... Other>
438struct value_list_index<Value, value_list<Value, Other...>> {
439 static_assert(value_list_index<Value, value_list<Other...>>::value == sizeof...(Other), "Non-unique type");
441 using value_type = std::size_t;
443 static constexpr value_type value = 0u;
444};
445
450template<auto Value>
451struct value_list_index<Value, value_list<>> {
453 using value_type = std::size_t;
455 static constexpr value_type value = 0u;
456};
457
463template<auto Value, typename List>
465
472template<auto... Value, auto... Other>
474 return {};
475}
476
478template<typename...>
480
482template<>
486};
487
494template<auto... Value, auto... Other, typename... List>
495struct value_list_cat<value_list<Value...>, value_list<Other...>, List...> {
497 using type = typename value_list_cat<value_list<Value..., Other...>, List...>::type;
498};
499
504template<auto... Value>
505struct value_list_cat<value_list<Value...>> {
507 using type = value_list<Value...>;
508};
509
514template<typename... List>
515using value_list_cat_t = typename value_list_cat<List...>::type;
516
518template<typename>
520
526template<auto Value, auto... Other>
527struct value_list_unique<value_list<Value, Other...>> {
529 using type = std::conditional_t<
530 ((Value == Other) || ...),
531 typename value_list_unique<value_list<Other...>>::type,
533};
534
536template<>
540};
541
546template<typename Type>
548
555template<typename List, auto Value>
557
563template<auto... Value, auto Other>
564struct value_list_contains<value_list<Value...>, Other>
565 : std::bool_constant<((Value == Other) || ...)> {};
566
572template<typename List, auto Value>
574
576template<typename...>
578
584template<auto... Value, auto... Other>
585class value_list_diff<value_list<Value...>, value_list<Other...>> {
586 using v141_toolset_workaround = value_list<Other...>;
587
588public:
591};
592
597template<typename... List>
598using value_list_diff_t = typename value_list_diff<List...>::type;
599
601template<typename, typename>
602struct is_applicable: std::false_type {};
603
610template<typename Func, template<typename...> class Tuple, typename... Args>
611struct is_applicable<Func, Tuple<Args...>>: std::is_invocable<Func, Args...> {};
612
619template<typename Func, template<typename...> class Tuple, typename... Args>
620struct is_applicable<Func, const Tuple<Args...>>: std::is_invocable<Func, Args...> {};
621
627template<typename Func, typename Args>
629
631template<typename, typename, typename>
632struct is_applicable_r: std::false_type {};
633
641template<typename Ret, typename Func, typename... Args>
642struct is_applicable_r<Ret, Func, std::tuple<Args...>>: std::is_invocable_r<Ret, Func, Args...> {};
643
651template<typename Ret, typename Func, typename Args>
653
659template<typename Type, typename = void>
660struct is_complete: std::false_type {};
661
663template<typename Type>
664struct is_complete<Type, std::void_t<decltype(sizeof(Type))>>: std::true_type {};
665
670template<typename Type>
672
678template<typename Type, typename = void>
679struct is_iterator: std::false_type {};
680
682namespace internal {
683
684template<typename, typename = void>
685struct has_iterator_category: std::false_type {};
686
687template<typename Type>
688struct has_iterator_category<Type, std::void_t<typename std::iterator_traits<Type>::iterator_category>>: std::true_type {};
689
690} // namespace internal
694template<typename Type>
695struct is_iterator<Type, std::enable_if_t<!std::is_void_v<std::remove_cv_t<std::remove_pointer_t<Type>>>>>
696 : internal::has_iterator_category<Type> {};
697
702template<typename Type>
704
710template<typename Type>
712 : std::bool_constant<std::is_empty_v<Type> && !std::is_final_v<Type>> {};
713
718template<typename Type>
720
726template<typename Type, typename = void>
727struct is_transparent: std::false_type {};
728
730template<typename Type>
731struct is_transparent<Type, std::void_t<typename Type::is_transparent>>: std::true_type {};
732
737template<typename Type>
739
741namespace internal {
742
743template<typename, typename = void>
744struct has_tuple_size_value: std::false_type {};
745
746template<typename Type>
747struct has_tuple_size_value<Type, std::void_t<decltype(std::tuple_size<const Type>::value)>>: std::true_type {};
748
749template<typename, typename = void>
750struct has_value_type: std::false_type {};
751
752template<typename Type>
753struct has_value_type<Type, std::void_t<typename Type::value_type>>: std::true_type {};
754
755template<typename>
756[[nodiscard]] constexpr bool dispatch_is_equality_comparable();
757
758template<typename Type, std::size_t... Index>
759[[nodiscard]] constexpr bool unpack_maybe_equality_comparable(std::index_sequence<Index...>) {
760 return (dispatch_is_equality_comparable<std::tuple_element_t<Index, Type>>() && ...);
761}
762
763template<typename>
764[[nodiscard]] constexpr bool maybe_equality_comparable(char) {
765 return false;
766}
767
768template<typename Type>
769[[nodiscard]] constexpr auto maybe_equality_comparable(int) -> decltype(std::declval<Type>() == std::declval<Type>()) {
770 return true;
771}
772
773template<typename Type>
774[[nodiscard]] constexpr bool dispatch_is_equality_comparable() {
775 if constexpr(std::is_array_v<Type>) {
776 return false;
777 } else if constexpr(is_iterator_v<Type>) {
778 return maybe_equality_comparable<Type>(0);
779 } else if constexpr(has_value_type<Type>::value) {
780 if constexpr(std::is_same_v<typename Type::value_type, Type>) {
781 return maybe_equality_comparable<Type>(0);
782 } else if constexpr(dispatch_is_equality_comparable<typename Type::value_type>()) {
783 return maybe_equality_comparable<Type>(0);
784 } else {
785 return false;
786 }
787 } else if constexpr(is_complete_v<std::tuple_size<std::remove_cv_t<Type>>>) {
788 if constexpr(has_tuple_size_value<Type>::value) {
789 return maybe_equality_comparable<Type>(0) && unpack_maybe_equality_comparable<Type>(std::make_index_sequence<std::tuple_size<Type>::value>{});
790 } else {
791 return maybe_equality_comparable<Type>(0);
792 }
793 } else {
794 return maybe_equality_comparable<Type>(0);
795 }
796}
797
798} // namespace internal
806template<typename Type>
807struct is_equality_comparable: std::bool_constant<internal::dispatch_is_equality_comparable<Type>()> {};
808
810template<typename Type>
812
817template<typename Type>
819
825template<typename To, typename From>
828 using type = std::remove_const_t<To>;
829};
830
832template<typename To, typename From>
833struct constness_as<To, const From> {
835 using type = const To;
836};
837
843template<typename To, typename From>
845
850template<typename Member>
852 static_assert(std::is_member_pointer_v<Member>, "Invalid pointer type to non-static member object or function");
853
854 template<typename Class, typename Ret, typename... Args>
855 static Class *clazz(Ret (Class::*)(Args...));
856
857 template<typename Class, typename Ret, typename... Args>
858 static Class *clazz(Ret (Class::*)(Args...) const);
859
860 template<typename Class, typename Type>
861 static Class *clazz(Type Class::*);
862
863public:
865 using type = std::remove_pointer_t<decltype(clazz(std::declval<Member>()))>;
866};
867
872template<typename Member>
874
880template<std::size_t Index, typename Candidate>
882 template<typename Ret, typename... Args>
883 static constexpr type_list<Args...> pick_up(Ret (*)(Args...));
884
885 template<typename Ret, typename Class, typename... Args>
886 static constexpr type_list<Args...> pick_up(Ret (Class ::*)(Args...));
887
888 template<typename Ret, typename Class, typename... Args>
889 static constexpr type_list<Args...> pick_up(Ret (Class ::*)(Args...) const);
890
891 template<typename Type, typename Class>
892 static constexpr type_list<Type> pick_up(Type Class ::*);
893
894public:
897};
898
904template<std::size_t Index, typename Candidate>
906
907} // namespace entt
908
909template<typename... Type>
910struct std::tuple_size<entt::type_list<Type...>>: std::integral_constant<std::size_t, entt::type_list<Type...>::size> {};
911
912template<std::size_t Index, typename... Type>
913struct std::tuple_element<Index, entt::type_list<Type...>>: entt::type_list_element<Index, entt::type_list<Type...>> {};
914
915template<auto... Value>
916struct std::tuple_size<entt::value_list<Value...>>: std::integral_constant<std::size_t, entt::value_list<Value...>::size> {};
917
918template<std::size_t Index, auto... Value>
919struct std::tuple_element<Index, entt::value_list<Value...>>: entt::value_list_element<Index, entt::value_list<Value...>> {};
920
921#endif
Extracts the class of a non-static member object or function.
std::remove_pointer_t< decltype(clazz(std::declval< Member >()))> type
The class of the given non-static member object or function.
Extracts the n-th argument of a given function or member function.
type_list_element_t< Index, decltype(pick_up(std::declval< Candidate >()))> type
N-th argument of the given function or member function.
value_list_cat_t< std::conditional_t< value_list_contains_v< v141_toolset_workaround, Value >, value_list<>, value_list< Value > >... > type
A value list that is the difference between the two value lists.
Primary template isn't defined on purpose.
EnTT default namespace.
Definition dense_map.hpp:21
constexpr bool is_equality_comparable_v
Helper variable template.
constexpr choice_t< N > choice
Variable template for the choice trick.
typename type_identity< Type >::type type_identity_t
Helper type.
std::integral_constant< decltype(Value), Value > integral_constant
Wraps a static constant.
typename value_list_cat< List... >::type value_list_cat_t
Helper type.
constexpr std::size_t size_of_v
Helper variable template.
typename value_list_element< Index, List >::type value_list_element_t
Helper type.
constexpr std::size_t type_list_index_v
Helper variable template.
constexpr bool is_iterator_v
Helper variable template.
typename member_class< Member >::type member_class_t
Helper type.
constexpr auto value_list_element_v
Helper type.
typename type_list_transform< List, Op >::type type_list_transform_t
Helper type.
constexpr bool is_applicable_v
Helper variable template.
typename type_list_cat< List... >::type type_list_cat_t
Helper type.
constexpr bool is_transparent_v
Helper variable template.
typename type_list_unique< List >::type type_list_unique_t
Helper type.
typename constness_as< To, From >::type constness_as_t
Alias template to facilitate the transcription of the constness.
constexpr bool is_complete_v
Helper variable template.
constexpr bool type_list_contains_v
Helper variable template.
constexpr std::size_t value_list_index_v
Helper variable template.
typename value_list_diff< List... >::type value_list_diff_t
Helper type.
integral_constant< Value > tag
Alias template to facilitate the creation of named values.
constexpr type_list< Type..., Other... > operator+(type_list< Type... >, type_list< Other... >)
Concatenates multiple type lists.
constexpr bool value_list_contains_v
Helper variable template.
typename type_list_element< Index, List >::type type_list_element_t
Helper type.
typename value_list_unique< Type >::type value_list_unique_t
Helper type.
typename nth_argument< Index, Candidate >::type nth_argument_t
Helper type.
Type unpack_as_type
Using declaration to be used to repeat the same type a number of times equal to the size of a given p...
constexpr bool is_applicable_r_v
Helper variable template.
constexpr auto unpack_as_value
Helper variable template to be used to repeat the same value a number of times equal to the size of a...
typename type_list_diff< List... >::type type_list_diff_t
Helper type.
constexpr bool is_ebco_eligible_v
Helper variable template.
Utility class to disambiguate overloaded functions.
const To type
The type resulting from the transcription of the constness.
Transcribes the constness of a type to another type.
std::remove_const_t< To > type
The type resulting from the transcription of the constness.
Same as std::is_invocable_r, but with tuples for arguments.
Same as std::is_invocable, but with tuples.
Provides the member constant value to true if a given type is complete, false otherwise.
Provides the member constant value to true if a given type is both an empty and non-final class,...
Provides the member constant value to true if a given type is equality comparable,...
Provides the member constant value to true if a given type is an iterator, false otherwise.
Provides the member constant value to true if Type::is_transparent is valid and denotes a type,...
A type-only sizeof wrapper that returns 0 where sizeof complains.
Identity type trait.
Type type
Identity type.
typename type_list_cat< type_list< Type..., Other... >, List... >::type type
A type list composed by the types of all the type lists.
Concatenates multiple type lists.
Primary template isn't defined on purpose.
Provides the member constant value to true if a type list contains a given type, false otherwise.
type_list_cat_t< std::conditional_t< type_list_contains_v< type_list< Other... >, Type >, type_list<>, type_list< Type > >... > type
A type list that is the difference between the two type lists.
Primary template isn't defined on purpose.
Primary template isn't defined on purpose.
std::size_t value_type
Unsigned integer type.
Primary template isn't defined on purpose.
Primary template isn't defined on purpose.
Removes duplicates types from a type list.
typename internal::type_list_unique< List >::type type
A type list without duplicate types.
A class to use to push around lists of types, nothing more.
static constexpr auto size
Compile-time number of elements in the type list.
typename value_list_cat< value_list< Value..., Other... >, List... >::type type
A value list composed by the values of all the value lists.
Concatenates multiple value lists.
Primary template isn't defined on purpose.
Provides the member constant value to true if a value list contains a given value,...
Primary template isn't defined on purpose.
std::size_t value_type
Unsigned integer type.
Primary template isn't defined on purpose.
std::conditional_t<((Value==Other)||...), typename value_list_unique< value_list< Other... > >::type, value_list_cat_t< value_list< Value >, typename value_list_unique< value_list< Other... > >::type > > type
A value list without duplicate types.
Primary template isn't defined on purpose.
A class to use to push around lists of constant values, nothing more.
static constexpr auto size
Compile-time number of elements in the value list.