MCPcopy Create free account
hub / github.com/LibRapid/librapid / ContainsArrayType

Class ContainsArrayType

librapid/include/librapid/array/arrayContainer.hpp:936–945  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

934
935 template<typename First, typename... Types>
936 struct ContainsArrayType {
937 static constexpr auto evaluator() {
938 if constexpr (sizeof...(Types) == 0)
939 return IsArrayType<First>::val;
940 else
941 return IsArrayType<First>::val || ContainsArrayType<Types...>::val;
942 };
943
944 static constexpr bool val = evaluator();
945 };
946 }; // namespace detail
947} // namespace librapid
948

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected