• Home
  • Raw
  • Download

Lines Matching refs:f_or_

222     BOOST_HOF_PLACEHOLDER_TEST_CONSTEXPR auto f_or_ = boost::hof::_1 || boost::hof::_2;  in BOOST_HOF_TEST_CASE()  local
224 static_assert(std::is_copy_constructible<decltype(f_or_)>::value, "Not copyable"); in BOOST_HOF_TEST_CASE()
226 …static_assert(boost::hof::detail::is_default_constructible<decltype(f_or_)>::value, "Not default c… in BOOST_HOF_TEST_CASE()
227 PLACEHOLDER_CHECK(f_or_(true, false) == x_or_); in BOOST_HOF_TEST_CASE()
445 BOOST_HOF_PLACEHOLDER_TEST_CONSTEXPR auto f_or_ = boost::hof::_ || boost::hof::_; in BOOST_HOF_TEST_CASE() local
447 static_assert(std::is_copy_constructible<decltype(f_or_)>::value, "Not copyable"); in BOOST_HOF_TEST_CASE()
449 …static_assert(boost::hof::detail::is_default_constructible<decltype(f_or_)>::value, "Not default c… in BOOST_HOF_TEST_CASE()
450 PLACEHOLDER_CHECK(f_or_(true, false) == x_or_); in BOOST_HOF_TEST_CASE()
592 BOOST_HOF_PLACEHOLDER_TEST_CONSTEXPR auto f_or_ = true || boost::hof::_; in BOOST_HOF_TEST_CASE() local
594 static_assert(std::is_copy_constructible<decltype(f_or_)>::value, "Not copyable"); in BOOST_HOF_TEST_CASE()
596 …static_assert(!boost::hof::detail::is_default_constructible<decltype(f_or_)>::value, "default cons… in BOOST_HOF_TEST_CASE()
597 PLACEHOLDER_CHECK(f_or_(false) == x_or_); in BOOST_HOF_TEST_CASE()
739 BOOST_HOF_PLACEHOLDER_TEST_CONSTEXPR auto f_or_ = boost::hof::_ || false; in BOOST_HOF_TEST_CASE() local
741 static_assert(std::is_copy_constructible<decltype(f_or_)>::value, "Not copyable"); in BOOST_HOF_TEST_CASE()
743 …static_assert(!boost::hof::detail::is_default_constructible<decltype(f_or_)>::value, "default cons… in BOOST_HOF_TEST_CASE()
744 PLACEHOLDER_CHECK(f_or_(true) == x_or_); in BOOST_HOF_TEST_CASE()