replicate.hpp 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*!
  2. @file
  3. Defines `boost::hana::replicate`.
  4. @copyright Louis Dionne 2013-2016
  5. Distributed under the Boost Software License, Version 1.0.
  6. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  7. */
  8. #ifndef BOOST_HANA_REPLICATE_HPP
  9. #define BOOST_HANA_REPLICATE_HPP
  10. #include <boost/hana/fwd/replicate.hpp>
  11. #include <boost/hana/concept/integral_constant.hpp>
  12. #include <boost/hana/concept/monad_plus.hpp>
  13. #include <boost/hana/config.hpp>
  14. #include <boost/hana/core/dispatch.hpp>
  15. #include <boost/hana/core/make.hpp>
  16. #include <boost/hana/cycle.hpp>
  17. #include <boost/hana/lift.hpp>
  18. #include <cstddef>
  19. #include <utility>
  20. BOOST_HANA_NAMESPACE_BEGIN
  21. template <typename M>
  22. struct replicate_t {
  23. #ifndef BOOST_HANA_CONFIG_DISABLE_CONCEPT_CHECKS
  24. static_assert(hana::MonadPlus<M>::value,
  25. "hana::replicate<M>(x, n) requires 'M' to be a MonadPlus");
  26. #endif
  27. template <typename X, typename N>
  28. constexpr auto operator()(X&& x, N const& n) const {
  29. using Replicate = BOOST_HANA_DISPATCH_IF(replicate_impl<M>,
  30. hana::MonadPlus<M>::value &&
  31. hana::IntegralConstant<N>::value
  32. );
  33. #ifndef BOOST_HANA_CONFIG_DISABLE_CONCEPT_CHECKS
  34. static_assert(hana::IntegralConstant<N>::value,
  35. "hana::replicate<M>(x, n) requires 'n' to be an IntegralConstant");
  36. #endif
  37. return Replicate::apply(static_cast<X&&>(x), n);
  38. }
  39. };
  40. template <typename M, bool condition>
  41. struct replicate_impl<M, when<condition>> : default_ {
  42. template <typename X, typename N>
  43. static constexpr auto apply(X&& x, N const& n) {
  44. return hana::cycle(hana::lift<M>(static_cast<X&&>(x)), n);
  45. }
  46. };
  47. template <typename S>
  48. struct replicate_impl<S, when<Sequence<S>::value>> {
  49. template <typename X, std::size_t ...i>
  50. static constexpr auto replicate_helper(X&& x, std::index_sequence<i...>)
  51. { return hana::make<S>(((void)i, x)...); }
  52. template <typename X, typename N>
  53. static constexpr auto apply(X&& x, N const&) {
  54. constexpr std::size_t n = N::value;
  55. return replicate_helper(static_cast<X&&>(x),
  56. std::make_index_sequence<n>{});
  57. }
  58. };
  59. BOOST_HANA_NAMESPACE_END
  60. #endif // !BOOST_HANA_REPLICATE_HPP