Home
last modified time | relevance | path

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

/external/python/pybind11/include/pybind11/
Dstl_bind.h30 …static constexpr const bool is_comparable = std::is_same<std::true_type, decltype(test_comparable<… member
38 struct is_comparable : std::false_type { }; struct
42 struct is_comparable<
44 container_traits<T>::is_comparable>>
49 struct is_comparable<T, enable_if_t<container_traits<T>::is_vector>> {
51 is_comparable<typename T::value_type>::value;
56 struct is_comparable<T, enable_if_t<container_traits<T>::is_pair>> {
58 is_comparable<typename T::first_type>::value &&
59 is_comparable<typename T::second_type>::value;
74 void vector_if_equal_operator(enable_if_t<is_comparable<Vector>::value, Class_> &cl) {