Searched refs:MemFunCallable (Results 1 – 2 of 2) sorted by relevance
209 MemFunCallable mt(true); in other_callable_types_test()210 const MemFunCallable mf(false); in other_callable_types_test()211 auto ret = std::not_fn(&MemFunCallable::return_value); in other_callable_types_test()218 MemFunCallable mt(true); in other_callable_types_test()219 MemFunCallable mf(false); in other_callable_types_test()220 auto ret = std::not_fn(&MemFunCallable::return_value_nc); in other_callable_types_test()227 MemFunCallable mt(true); in other_callable_types_test()228 const MemFunCallable mf(false); in other_callable_types_test()229 auto ret = std::not_fn(&MemFunCallable::value); in other_callable_types_test()275 using T = decltype(std::not_fn(&MemFunCallable::return_value_nc)); in call_operator_sfinae_test()[all …]
110 struct MemFunCallable { struct111 constexpr explicit MemFunCallable(bool x) : value(x) {} in MemFunCallable() argument