/*! @file Defines `boost::hana::transform`. @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_TRANSFORM_HPP #define BOOST_HANA_TRANSFORM_HPP #include #include #include #include #include #include #include #include #include #include BOOST_HANA_NAMESPACE_BEGIN //! @cond template constexpr auto transform_t::operator()(Xs&& xs, F&& f) const { using S = typename hana::tag_of::type; using Transform = BOOST_HANA_DISPATCH_IF(transform_impl, hana::Functor::value ); #ifndef BOOST_HANA_CONFIG_DISABLE_CONCEPT_CHECKS static_assert(hana::Functor::value, "hana::transform(xs, f) requires 'xs' to be a Functor"); #endif return Transform::apply(static_cast(xs), static_cast(f)); } //! @endcond template struct transform_impl> : default_ { template static constexpr auto apply(Xs&& xs, F&& f) { return hana::adjust_if(static_cast(xs), hana::always(hana::true_c), static_cast(f)); } }; template struct transform_impl::value>> { //! @cond template struct transformer { F f; template constexpr auto operator()(Xs&& ...xs) const { return hana::make((*f)(static_cast(xs))...); } }; //! @endcond template static constexpr auto apply(Xs&& xs, F&& f) { // We use a pointer to workaround a Clang 3.5 ICE return hana::unpack(static_cast(xs), transformer{&f}); } }; BOOST_HANA_NAMESPACE_END #endif // !BOOST_HANA_TRANSFORM_HPP