/*! @file Defines `boost::hana::is_disjoint`. @copyright Louis Dionne 2013-2017 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_HANA_IS_DISJOINT_HPP #define BOOST_HANA_IS_DISJOINT_HPP #include #include #include #include #include #include BOOST_HANA_NAMESPACE_BEGIN //! @cond template constexpr auto is_disjoint_t::operator()(Xs&& xs, Ys&& ys) const { using S1 = typename hana::tag_of::type; using S2 = typename hana::tag_of::type; using IsDisjoint = BOOST_HANA_DISPATCH_IF( decltype(is_disjoint_impl{}), hana::Searchable::value && hana::Searchable::value ); #ifndef BOOST_HANA_CONFIG_DISABLE_CONCEPT_CHECKS static_assert(hana::Searchable::value, "hana::is_disjoint(xs, ys) requires 'xs' to be Searchable"); static_assert(hana::Searchable::value, "hana::is_disjoint(xs, ys) requires 'ys' to be Searchable"); #endif return IsDisjoint::apply(static_cast(xs), static_cast(ys)); } //! @endcond namespace detail { template struct in_by_reference { Ys const& ys; template constexpr auto operator()(X const& x) const { return hana::contains(ys, x); } }; } template struct is_disjoint_impl> : default_ { template static constexpr auto apply(Xs const& xs, Ys const& ys) { return hana::none_of(xs, detail::in_by_reference{ys}); } }; BOOST_HANA_NAMESPACE_END #endif // !BOOST_HANA_IS_DISJOINT_HPP