xieite::type_list<Ts...>::all<>

Defined in header <xieite/meta/type_list.hpp>

Checks if all elements of a xieite::type_list {} satisfy some functor.


Definition

template<auto cond>
static constexpr bool all = xieite::is_satisfd_all<cond, Ts...>;


Example

int main() {
	using List = xieite::type_list<int, char, short, long>;

	// Check if all elements are integer types
	xieite::dump(List::all<[]<std::integral> {}>);
}
Output:
true
[View in Compiler Explorer]