Home
last modified time | relevance | path

Searched refs:type_list (Results 1 – 25 of 1828) sorted by relevance

12345678910>>...74

/dports/devel/caf/actor-framework-0.18.5/libcaf_core/caf/
H A Dinterface_mismatch.hpp27 struct imi<Pos, type_list<>, type_list<>, type_list<>> {
29 using xs = type_list<>;
30 using ys = type_list<>;
35 struct imi<Pos, type_list<timeout_definition<X>>, type_list<>, type_list<>> {
43 struct imi<Pos, type_list<>, type_list<Yout(Yin), Ys...>, type_list<>> {
51 struct imi<Pos, type_list<Xout(Xin), Xs...>, type_list<>, type_list<>> {
59 struct imi<Pos, type_list<timeout_definition<X>>, type_list<Y, Ys...>,
69 struct imi<Pos, type_list<Out(In...), Xs...>, type_list<Out(In...), Ys...>,
71 : imi<Pos + 1, type_list<Xs...>, type_list<Zs..., Ys...>, type_list<>> {};
78 : imi<Pos, type_list<Xout(Xin...), Xs...>, type_list<Ys...>,
[all …]
H A Dcomposed_type.hpp35 struct composed_type<detail::type_list<>, Ys, Zs, detail::type_list<Rs...>> {
41 struct composed_type<detail::type_list<X, Xs...>, Ys, detail::type_list<>, Rs>
42 : composed_type<detail::type_list<Xs...>, Ys, Ys, Rs> {};
47 struct composed_type<detail::type_list<Out(In...), Xs...>, Ys,
48 detail::type_list<MapsTo(Out), Zs...>,
49 detail::type_list<Rs...>>
50 : composed_type<detail::type_list<Xs...>, Ys, Ys,
58 detail::type_list<Rs...>>
59 : composed_type<detail::type_list<Xs...>, Ys, Ys,
67 : composed_type<detail::type_list<Out(In...), Xs...>, Ys,
[all …]
/dports/graphics/GraphicsMagick/GraphicsMagick-1.3.36/magick/
H A Dtype.c130 type_list=(TypeInfo *) NULL; in DestroyTypeInfo()
188 type_list=type_list->next; in GetTypeInfo()
192 type_list=type_list->previous; in GetTypeInfo()
210 if (p != type_list) in GetTypeInfo()
220 p->next=type_list; in GetTypeInfo()
221 type_list->previous=p; in GetTypeInfo()
222 type_list=p; in GetTypeInfo()
720 type_list=type_list->next; in ReadTypeConfigureFile()
749 type_list=type_list->next; in ReadTypeConfigureFile()
752 type_list=type_list->next; in ReadTypeConfigureFile()
[all …]
/dports/devel/caf/actor-framework-0.18.5/libcaf_core/caf/detail/
H A Dtype_list.hpp21 struct type_list { struct
22 constexpr type_list() { in type_list() argument
81 using type = type_list<>;
536 struct tl_concat_impl<type_list<LhsTs...>, type_list<RhsTs...>> {
667 struct tl_replace_back<type_list<T0, T1, Ts...>, Back, type_list<Us...>>
668 : tl_replace_back<type_list<T1, Ts...>, Back, type_list<Us..., T0>> {};
671 struct tl_replace_back<type_list<T>, Back, type_list<Us...>> {
822 type_list<T0>,
960 type_list<T0>,
979 using type = type_list<type_list<Ts..., What>>;
[all …]
/dports/devel/fatal/fatal-2021.12.27.00/fatal/type/test/
H A Dlist_test.cpp334 type_list< in FATAL_TEST()
416 type_list< in FATAL_TEST()
423 type_list< in FATAL_TEST()
431 type_list< in FATAL_TEST()
440 type_list< in FATAL_TEST()
655 type_list< in FATAL_TEST()
680 type_list< in FATAL_TEST()
1420 using list = type_list<type_list<type_list<type_list<vl>>>>;
1422 using expected1 = type_list<type_list<type_list<vl>>>;
1423 using expected2 = type_list<type_list<vl>>;
[all …]
/dports/databases/pgmodeler/pgmodeler-0.9.3-beta/libpgmodeler/src/pgsqltypes/
H A Dbasetype.cpp31 unsigned BaseType::setType(unsigned type_id, const QStringList &type_list) in setType() argument
34 if(type_list.isEmpty()) in setType()
37 else if(!isTypeValid(type_id, type_list)) in setType()
46 return setType(static_cast<unsigned>(type_list.indexOf(type_name)), type_list); in setType()
49 bool BaseType::isTypeValid(unsigned type_id, const QStringList &type_list) in isTypeValid() argument
55 QStringList BaseType::getTypes(const QStringList &type_list) in getTypes() argument
57 QStringList types = type_list; in getTypes()
68 int idx = type_list.indexOf(type_name); in getType()
77 QString BaseType::getTypeName(unsigned type_id, const QStringList &type_list) in getTypeName() argument
79 if(type_id > static_cast<unsigned>(type_list.size())) in getTypeName()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/test/API/lang/c/find_struct_type/
H A DTestFindStructTypes.py35 type_list = target.FindTypes("struct mytype")
36 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
39 type_list = target.FindTypes("mytype")
40 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
43 type_list = target.FindTypes("union myunion")
44 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
47 type_list = target.FindTypes("myunion")
48 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
51 type_list = target.FindTypes("typedef MyType")
52 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/
H A DTestFindStructTypes.py35 type_list = target.FindTypes("struct mytype")
36 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
39 type_list = target.FindTypes("mytype")
40 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
43 type_list = target.FindTypes("union myunion")
44 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
47 type_list = target.FindTypes("myunion")
48 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
51 type_list = target.FindTypes("typedef MyType")
52 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/test/API/lang/c/find_struct_type/
H A DTestFindStructTypes.py35 type_list = target.FindTypes("struct mytype")
36 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
39 type_list = target.FindTypes("mytype")
40 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
43 type_list = target.FindTypes("union myunion")
44 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
47 type_list = target.FindTypes("myunion")
48 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
51 type_list = target.FindTypes("typedef MyType")
52 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/test/API/lang/c/find_struct_type/
H A DTestFindStructTypes.py35 type_list = target.FindTypes("struct mytype")
36 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
39 type_list = target.FindTypes("mytype")
40 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
43 type_list = target.FindTypes("union myunion")
44 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
47 type_list = target.FindTypes("myunion")
48 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
51 type_list = target.FindTypes("typedef MyType")
52 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/test/API/lang/c/find_struct_type/
H A DTestFindStructTypes.py35 type_list = target.FindTypes("struct mytype")
36 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
39 type_list = target.FindTypes("mytype")
40 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
43 type_list = target.FindTypes("union myunion")
44 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
47 type_list = target.FindTypes("myunion")
48 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
51 type_list = target.FindTypes("typedef MyType")
52 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/test/API/lang/c/find_struct_type/
H A DTestFindStructTypes.py35 type_list = target.FindTypes("struct mytype")
36 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
39 type_list = target.FindTypes("mytype")
40 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
43 type_list = target.FindTypes("union myunion")
44 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
47 type_list = target.FindTypes("myunion")
48 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
51 type_list = target.FindTypes("typedef MyType")
52 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/lldb/test/API/lang/c/find_struct_type/
H A DTestFindStructTypes.py35 type_list = target.FindTypes("struct mytype")
36 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
39 type_list = target.FindTypes("mytype")
40 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
43 type_list = target.FindTypes("union myunion")
44 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
47 type_list = target.FindTypes("myunion")
48 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
51 type_list = target.FindTypes("typedef MyType")
52 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/test/API/lang/c/find_struct_type/
H A DTestFindStructTypes.py35 type_list = target.FindTypes("struct mytype")
36 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
39 type_list = target.FindTypes("mytype")
40 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
43 type_list = target.FindTypes("union myunion")
44 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
47 type_list = target.FindTypes("myunion")
48 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
51 type_list = target.FindTypes("typedef MyType")
52 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/test/API/lang/c/find_struct_type/
H A DTestFindStructTypes.py35 type_list = target.FindTypes("struct mytype")
36 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
39 type_list = target.FindTypes("mytype")
40 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
43 type_list = target.FindTypes("union myunion")
44 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
47 type_list = target.FindTypes("myunion")
48 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
51 type_list = target.FindTypes("typedef MyType")
52 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/lldb/test/API/lang/c/find_struct_type/
H A DTestFindStructTypes.py35 type_list = target.FindTypes("struct mytype")
36 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
39 type_list = target.FindTypes("mytype")
40 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
43 type_list = target.FindTypes("union myunion")
44 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
47 type_list = target.FindTypes("myunion")
48 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
51 type_list = target.FindTypes("typedef MyType")
52 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/ilasm/codegen/
H A DGenericArguments.cs17 ArrayList type_list; field in Mono.ILASM.GenericArguments
25 type_list = null; in GenericArguments()
33 get { return type_list.Count; }
41 if (type_list == null) in Add()
42 type_list = new ArrayList (); in Add()
43 type_list.Add (type); in Add()
50 if (type_list == null) in ToArray()
64 p_type_list = new PEAPI.Type [type_list.Count]; in Resolve()
65 foreach (BaseTypeRef type in type_list) { in Resolve()
76 foreach (BaseTypeRef type in type_list) { in Resolve()
[all …]
/dports/math/eigen3/eigen-3.3.9/unsupported/test/
H A Dcxx11_meta.cpp16 using Eigen::internal::type_list;
134 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<>>::type, type_list<dummy_a… in test_concat()
135 …VERIFY((is_same<typename concat<type_list<>, type_list<dummy_a, dummy_a>>::type, type_list<dummy_a… in test_concat()
136 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_a, dummy_a>>::type, t… in test_concat()
137 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_b, dummy_c>>::type, t… in test_concat()
138 …VERIFY((is_same<typename concat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list<… in test_concat()
146 VERIFY((is_same<typename mconcat<type_list<dummy_a>>::type, type_list<dummy_a>>::value)); in test_concat()
147 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>>::type, type_list<dummy_a,… in test_concat()
148 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>, type_list<dummy_c>>::type… in test_concat()
149 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list in test_concat()
[all …]
/dports/math/stanmath/math-4.2.0/lib/eigen_3.3.9/unsupported/test/
H A Dcxx11_meta.cpp16 using Eigen::internal::type_list;
134 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<>>::type, type_list<dummy_a… in test_concat()
135 …VERIFY((is_same<typename concat<type_list<>, type_list<dummy_a, dummy_a>>::type, type_list<dummy_a… in test_concat()
136 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_a, dummy_a>>::type, t… in test_concat()
137 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_b, dummy_c>>::type, t… in test_concat()
138 …VERIFY((is_same<typename concat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list<… in test_concat()
146 VERIFY((is_same<typename mconcat<type_list<dummy_a>>::type, type_list<dummy_a>>::value)); in test_concat()
147 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>>::type, type_list<dummy_a,… in test_concat()
148 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>, type_list<dummy_c>>::type… in test_concat()
149 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list in test_concat()
[all …]
/dports/math/libsemigroups/libsemigroups-1.3.7/extern/eigen-3.3.7/unsupported/test/
H A Dcxx11_meta.cpp16 using Eigen::internal::type_list;
134 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<>>::type, type_list<dummy_a… in test_concat()
135 …VERIFY((is_same<typename concat<type_list<>, type_list<dummy_a, dummy_a>>::type, type_list<dummy_a… in test_concat()
136 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_a, dummy_a>>::type, t… in test_concat()
137 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_b, dummy_c>>::type, t… in test_concat()
138 …VERIFY((is_same<typename concat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list<… in test_concat()
146 VERIFY((is_same<typename mconcat<type_list<dummy_a>>::type, type_list<dummy_a>>::value)); in test_concat()
147 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>>::type, type_list<dummy_a,… in test_concat()
148 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>, type_list<dummy_c>>::type… in test_concat()
149 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list in test_concat()
[all …]
/dports/misc/opennn/opennn-5.0.5/eigen/unsupported/test/
H A Dcxx11_meta.cpp16 using Eigen::internal::type_list;
134 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<>>::type, type_list<dummy_a… in test_concat()
135 …VERIFY((is_same<typename concat<type_list<>, type_list<dummy_a, dummy_a>>::type, type_list<dummy_a… in test_concat()
136 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_a, dummy_a>>::type, t… in test_concat()
137 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_b, dummy_c>>::type, t… in test_concat()
138 …VERIFY((is_same<typename concat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list<… in test_concat()
146 VERIFY((is_same<typename mconcat<type_list<dummy_a>>::type, type_list<dummy_a>>::value)); in test_concat()
147 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>>::type, type_list<dummy_a,… in test_concat()
148 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>, type_list<dummy_c>>::type… in test_concat()
149 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list in test_concat()
[all …]
/dports/devel/taskflow/taskflow-3.2.0/3rd-party/eigen-3.3.7/unsupported/test/
H A Dcxx11_meta.cpp16 using Eigen::internal::type_list;
134 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<>>::type, type_list<dummy_a… in test_concat()
135 …VERIFY((is_same<typename concat<type_list<>, type_list<dummy_a, dummy_a>>::type, type_list<dummy_a… in test_concat()
136 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_a, dummy_a>>::type, t… in test_concat()
137 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_b, dummy_c>>::type, t… in test_concat()
138 …VERIFY((is_same<typename concat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list<… in test_concat()
146 VERIFY((is_same<typename mconcat<type_list<dummy_a>>::type, type_list<dummy_a>>::value)); in test_concat()
147 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>>::type, type_list<dummy_a,… in test_concat()
148 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>, type_list<dummy_c>>::type… in test_concat()
149 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list in test_concat()
[all …]
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/eigen_3.3.3/unsupported/test/
H A Dcxx11_meta.cpp16 using Eigen::internal::type_list;
134 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<>>::type, type_list<dummy_a… in test_concat()
135 …VERIFY((is_same<typename concat<type_list<>, type_list<dummy_a, dummy_a>>::type, type_list<dummy_a… in test_concat()
136 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_a, dummy_a>>::type, t… in test_concat()
137 …VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_b, dummy_c>>::type, t… in test_concat()
138 …VERIFY((is_same<typename concat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list<… in test_concat()
146 VERIFY((is_same<typename mconcat<type_list<dummy_a>>::type, type_list<dummy_a>>::value)); in test_concat()
147 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>>::type, type_list<dummy_a,… in test_concat()
148 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b>, type_list<dummy_c>>::type… in test_concat()
149 …VERIFY((is_same<typename mconcat<type_list<dummy_a>, type_list<dummy_b, dummy_c>>::type, type_list in test_concat()
[all …]
/dports/devel/rttr/rttr-0.9.6-16-gb3a131c/src/rttr/detail/visitor/
H A Dvisitor_impl.h135 static visitor::type_info<type_list<T, type_list<Base_Classes...>>> make_type_visitor_info(const ty… in make_type_visitor_info()
137 return visitor::type_info<type_list<T, type_list<Base_Classes...>>>{type_info}; in make_type_visitor_info()
145 return visitor::constructor_function_info<type_list<T, Policy, Acc>>{ctor, acc}; in make_ctor_info_func()
151 static visitor::constructor_info<type_list<T, Policy, type_list<Args...>>> make_ctor_info(const con… in make_ctor_info()
153 return visitor::constructor_info<type_list<T, Policy, type_list<Args...>>>{ctor}; in make_ctor_info()
159 static visitor::method_info<type_list<T, Policy, Acc>> make_method_info(const method& meth, const A… in make_method_info()
161 return visitor::method_info<type_list<T, Policy, Acc>>{meth, acc}; in make_method_info()
169 return visitor::property_info<type_list<T, Policy, Acc>>{prop, acc}; in make_property_info()
175 static visitor::property_getter_setter_info<type_list<T, Policy, Getter, Setter>>
180 …return visitor::property_getter_setter_info<type_list<T, Policy, Getter, Setter>>{prop, getter, se… in make_property_getter_setter_info()
[all …]
/dports/devel/entt/entt-3.8.1/src/entt/entity/
H A Dorganizer.hpp43 type_list<std::remove_const_t<Type>>,
44 type_list<>
49 type_list<Type>,
50 type_list<>
56 using ro = type_list<>;
57 using rw = type_list<>;
67 …using ro = type_list_cat_t<type_list<Exclude...>, typename unpack_type<Component, type_list<Overri…
81 struct resource<type_list<Args...>, type_list<Req...>> {
89 resource<type_list<std::remove_reference_t<Args>...>, type_list<Req...>> free_function_to_resource(…
101 resource<type_list<>, type_list<Req...>> to_resource();
[all …]

12345678910>>...74