12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #ifndef BOOST_HANA_FWD_UNFOLD_LEFT_HPP
- #define BOOST_HANA_FWD_UNFOLD_LEFT_HPP
- #include <boost/hana/config.hpp>
- #include <boost/hana/core/when.hpp>
- BOOST_HANA_NAMESPACE_BEGIN
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #ifdef BOOST_HANA_DOXYGEN_INVOKED
- template <typename S>
- constexpr auto unfold_left = [](auto&& state, auto&& f) {
- return tag-dispatched;
- };
- #else
- template <typename S, typename = void>
- struct unfold_left_impl : unfold_left_impl<S, when<true>> { };
- template <typename S>
- struct unfold_left_t;
- template <typename S>
- constexpr unfold_left_t<S> unfold_left{};
- #endif
- BOOST_HANA_NAMESPACE_END
- #endif
|