Searched defs:f2a (Results 1 – 3 of 3) sorted by relevance
46 std::function<NonCopyable()> f2a = +[]() { return NonCopyable(); }; in test() local63 std::function<const NonCopyable()> f2a = +[]() { return NonCopyable(); }; in const_test() local80 std::function<void()> f2a = +[]() { return NonCopyable(); }; in void_test() local92 std::function<const void()> f2a = +[]() { return NonCopyable(); }; in const_void_test() local104 std::function<NonCopyable(LargeLambda&)> f2a = &LargeLambda::f; in member_pointer_test() local127 std::function f2a = +[]() { return NonCopyable(); }; in ctad_test() local
79 function<int(int, int)> f2a; in test_function() local
74 auto f2a(int n) { return n; } in f2a() function