xieite::type_list<Ts...>::any<>

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

Checks if at least one element of a xieite::type_list {} satisfies some functor.


Definition

template<auto cond>
static constexpr bool any = xieite::is_satisfd_any<cond, Ts...>;


Example

int main() {
	using List = xieite::type_list<int, char, float, void*>;

	// Check if any element is an integer type
	xieite::dump(List::any<[]<std::integral> {}>);
}
Output:
true
[View in Compiler Explorer]