Searched refs:__is_callable (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | is_callable.h | 28 struct __is_callable : decltype(std::__is_callable_helper<_Func, _Args...>(0)) {}; struct
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | minmax.h | 43 static_assert(__is_callable<_Compare, _Tp, _Tp>::value, "The comparator has to be callable"); in minmax()
|
H A D | min_element.h | 56 …__is_callable<_Compare, decltype(*__first), decltype(*__first)>::value, "The comparator has to be … in min_element()
|
H A D | includes.h | 57 …__is_callable<_Compare, decltype(*__first1), decltype(*__first2)>::value, "Comparator has to be ca… in includes()
|
H A D | is_permutation.h | 252 static_assert(__is_callable<_BinaryPredicate, decltype(*__first1), decltype(*__first2)>::value, 289 static_assert(__is_callable<_BinaryPredicate, decltype(*__first1), decltype(*__first2)>::value,
|
H A D | partial_sort_copy.h | 80 __is_callable<_Compare, decltype(*__first), decltype(*__result_first)>::value, "Comparator has to be callable"); in partial_sort_copy()
|
H A D | equal_range.h | 65 …static_assert(__is_callable<_Compare, decltype(*__first), const _Tp&>::value, "The comparator has … in equal_range()
|
H A D | minmax_element.h | 87 …__is_callable<_Compare, decltype(*__first), decltype(*__first)>::value, "The comparator has to be … in minmax_element()
|
H A D | lower_bound.h | 96 …static_assert(__is_callable<_Compare, decltype(*__first), const _Tp&>::value, "The comparator has … in lower_bound()
|
H A D | search_n.h | 142 …__is_callable<_BinaryPredicate, decltype(*__first), const _Tp&>::value, "BinaryPredicate has to be… in search_n()
|
H A D | search.h | 169 static_assert(__is_callable<_BinaryPredicate, decltype(*__first1), decltype(*__first2)>::value, in search()
|