Home
last modified time | relevance | path

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

/external/python/pybind11/include/pybind11/detail/
Dcommon.h498 template<size_t N, size_t ...S> struct make_index_sequence_impl : make_index_sequence_impl <N - 1, … struct
499 template<size_t ...S> struct make_index_sequence_impl <0, S...> { using type = index_sequence<S...>…
500 template<size_t N> using make_index_sequence = typename make_index_sequence_impl<N>::type;