Home
last modified time | relevance | path

Searched refs:cx_find_index (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/mp11/
Dalgorithm.hpp712 constexpr std::size_t cx_find_index( bool const * first, bool const * last ) in cx_find_index() function
727 constexpr std::size_t cx_find_index( bool const * first, bool const * last ) in cx_find_index() function
729 return first == last || *first? 0: 1 + cx_find_index( first + 1, last ); in cx_find_index()
737 using type = mp_size_t< cx_find_index( _v, _v + sizeof...(T) ) >;
800 using type = mp_size_t< cx_find_index( _v, _v + sizeof...(T) ) >;
/third_party/boost/libs/mp11/doc/article/
Dsimple_cxx11_metaprogramming_2.adoc895 constexpr std::size_t cx_find_index( bool const * first, bool const * last )
897 return first == last || *first? 0: 1 + cx_find_index( first + 1, last );
905 using type = mp_size_t< cx_find_index( _v, _v + sizeof...(T) ) >;