13 #ifndef TINYMPL_VARIADIC_FIND_HPP 
   14 #define TINYMPL_VARIADIC_FIND_HPP 
   16 #include <tinympl/variadic/find_if.hpp> 
   17 #include <tinympl/bind.hpp> 
   18 #include <tinympl/equal_to.hpp> 
   37 template<
typename T, 
class ... Args>
 
   38 struct find : 
find_if< bind<equal_to, arg1, T>::template eval_t, Args ... > {};
 
   43 #endif // TINYMPL_VARIADIC_FIND_HPP 
Definition: find_if.hpp:34
 
Compute the index of the first element in the sequence which is equal to the given type T...
Definition: find.hpp:38