Lines Matching refs:MemFunCallable
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()
276 static_assert(std::is_invocable<T, MemFunCallable&>::value, ""); in call_operator_sfinae_test()
277 static_assert(!std::is_invocable<T, const MemFunCallable&>::value, ""); in call_operator_sfinae_test()