• Home
  • Raw
  • Download

Lines Matching refs:hof

11 static constexpr boost::hof::static_<boost::hof::partial_adaptor<binary_class> > binary_partial = {…
13 static constexpr boost::hof::static_<boost::hof::partial_adaptor<unary_class> > unary_partial = {};
15 static constexpr boost::hof::static_<boost::hof::partial_adaptor<mutable_class> > mutable_partial =…
17 static constexpr boost::hof::static_<boost::hof::partial_adaptor<void_class> > void_partial = {};
19 static constexpr boost::hof::static_<boost::hof::partial_adaptor<mono_class> > mono_partial = {};
21 static constexpr boost::hof::static_<boost::hof::partial_adaptor<move_class> > move_partial = {};
23 constexpr boost::hof::partial_adaptor<binary_class> binary_partial_constexpr = {};
25 constexpr boost::hof::partial_adaptor<unary_class> unary_partial_constexpr = {};
27 constexpr boost::hof::partial_adaptor<void_class> void_partial_constexpr = {};
29 constexpr boost::hof::partial_adaptor<mono_class> mono_partial_constexpr = {};
33 boost::hof::partial_adaptor<void_class>()(1); in BOOST_HOF_TEST_CASE()
59 BOOST_HOF_TEST_CHECK(3 == (boost::hof::partial(move_class())(1)(2))); in BOOST_HOF_TEST_CASE()
60 BOOST_HOF_TEST_CHECK(3 == (boost::hof::partial(move_class())(1, 2))); in BOOST_HOF_TEST_CASE()
77 static_assert(noexcept(boost::hof::partial(binary_class{})(1)(2)), "noexcept partial"); in BOOST_HOF_TEST_CASE()
82 auto f = boost::hof::partial(boost::hof::limit_c<2>(binary_class())); in BOOST_HOF_TEST_CASE()
83 …static_assert(boost::hof::is_invocable<decltype(f), int>::value, "Passing the limit is not callabl… in BOOST_HOF_TEST_CASE()
84 …static_assert(boost::hof::is_invocable<decltype(f), int, int>::value, "Passing the limit is not ca… in BOOST_HOF_TEST_CASE()
85 …static_assert(!boost::hof::is_invocable<decltype(f), int, int, int>::value, "Passing the limit is … in BOOST_HOF_TEST_CASE()
86 …static_assert(!boost::hof::is_invocable<decltype(f), int, int, int, int>::value, "Passing the limi… in BOOST_HOF_TEST_CASE()
89 …static_assert(boost::hof::is_invocable<decltype(g), int>::value, "Passing the limit is not callabl… in BOOST_HOF_TEST_CASE()
90 …static_assert(!boost::hof::is_invocable<decltype(g), int, int>::value, "Passing the limit is not c… in BOOST_HOF_TEST_CASE()
91 …static_assert(!boost::hof::is_invocable<decltype(g), int, int, int>::value, "Passing the limit is … in BOOST_HOF_TEST_CASE()
92 …static_assert(!boost::hof::is_invocable<decltype(g), int, int, int, int>::value, "Passing the limi… in BOOST_HOF_TEST_CASE()
97 auto f = boost::hof::partial(binary_class()); in BOOST_HOF_TEST_CASE()
98 …static_assert(boost::hof::is_invocable<decltype(f), int>::value, "Passing the limit is not callabl… in BOOST_HOF_TEST_CASE()
99 …static_assert(boost::hof::is_invocable<decltype(f), int, int>::value, "Passing the limit is not ca… in BOOST_HOF_TEST_CASE()
100 …static_assert(boost::hof::is_invocable<decltype(f), int, int, int>::value, "Passing the limit is n… in BOOST_HOF_TEST_CASE()
101 …static_assert(boost::hof::is_invocable<decltype(f), int, int, int, int>::value, "Passing the limit… in BOOST_HOF_TEST_CASE()
104 …static_assert(boost::hof::is_invocable<decltype(g), int>::value, "Passing the limit is not callabl… in BOOST_HOF_TEST_CASE()
105 …static_assert(boost::hof::is_invocable<decltype(g), int, int>::value, "Passing the limit is not ca… in BOOST_HOF_TEST_CASE()
106 …static_assert(boost::hof::is_invocable<decltype(g), int, int, int>::value, "Passing the limit is n… in BOOST_HOF_TEST_CASE()
107 …static_assert(boost::hof::is_invocable<decltype(g), int, int, int, int>::value, "Passing the limit… in BOOST_HOF_TEST_CASE()