123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef BOOST_HANA_FWD_CONCAT_HPP
- #define BOOST_HANA_FWD_CONCAT_HPP
- #include <boost/hana/config.hpp>
- #include <boost/hana/core/when.hpp>
- BOOST_HANA_NAMESPACE_BEGIN
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #ifdef BOOST_HANA_DOXYGEN_INVOKED
- constexpr auto concat = [](auto&& xs, auto&& ys) {
- return tag-dispatched;
- };
- #else
- template <typename M, typename = void>
- struct concat_impl : concat_impl<M, when<true>> { };
- struct concat_t {
- template <typename Xs, typename Ys>
- constexpr auto operator()(Xs&& xs, Ys&& ys) const;
- };
- constexpr concat_t concat{};
- #endif
- BOOST_HANA_NAMESPACE_END
- #endif
|