1/*!
2@file
3Defines `boost::hana::union`.
4
5Copyright Louis Dionne 2013-2022
6Distributed under the Boost Software License, Version 1.0.
7(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
8 */
9
10#ifndef BOOST_HANA_UNION_HPP
11#define BOOST_HANA_UNION_HPP
12
13#include <boost/hana/fwd/union.hpp>
14
15#include <boost/hana/config.hpp>
16#include <boost/hana/core/dispatch.hpp>
17
18
19namespace boost { namespace hana {
20 //! @cond
21 template <typename Xs, typename Ys>
22 constexpr auto union_t::operator()(Xs&& xs, Ys&& ys) const {
23 using S = typename hana::tag_of<Xs>::type;
24 using Union = BOOST_HANA_DISPATCH_IF(union_impl<S>,
25 true
26 );
27
28 return Union::apply(static_cast<Xs&&>(xs), static_cast<Ys&&>(ys));
29 }
30 //! @endcond
31
32 template <typename S, bool condition>
33 struct union_impl<S, when<condition>> : default_ {
34 template <typename ...Args>
35 static constexpr auto apply(Args&& ...) = delete;
36 };
37}} // end namespace boost::hana
38
39#endif // !BOOST_HANA_UNION_HPP
40

source code of boost/libs/hana/include/boost/hana/union.hpp