12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #ifndef BOOST_HANA_FWD_REMOVE_HPP
- #define BOOST_HANA_FWD_REMOVE_HPP
- #include <boost/hana/config.hpp>
- #include <boost/hana/core/when.hpp>
- namespace boost { namespace hana {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #ifdef BOOST_HANA_DOXYGEN_INVOKED
- constexpr auto remove = [](auto&& xs, auto&& value) {
- return tag-dispatched;
- };
- #else
- template <typename M, typename = void>
- struct remove_impl : remove_impl<M, when<true>> { };
- struct remove_t {
- template <typename Xs, typename Value>
- constexpr auto operator()(Xs&& xs, Value&& value) const;
- };
- BOOST_HANA_INLINE_VARIABLE constexpr remove_t remove{};
- #endif
- }}
- #endif
|