xieite ::type_list <Ts ...>::find_idx <>
Defined in header <xieite/meta/type_list.hpp>
Finds the first index of an element in a
xieite ::type_list {}
that satisfies some functor.Definition
template <auto cond >requires (xieite ::is_satisfd_any <cond ,Ts ...>)static constexpr std ::size_t find_idx =/* ??? */ ;
Example
Output:int main () {using List =xieite ::type_list <int ,char ,float ,void* >;xieite ::dump (List ::find_idx <[]<std ::floating_point > {}>); }
[View in Compiler Explorer]2