123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- #ifndef BOOST_HOF_GUARD_FUNCTION_ARGS_H
- #define BOOST_HOF_GUARD_FUNCTION_ARGS_H
- #include <boost/hof/detail/seq.hpp>
- #include <boost/hof/returns.hpp>
- #include <boost/hof/detail/static_const_var.hpp>
- #include <utility>
- namespace boost { namespace hof {
- namespace detail {
- template<class T>
- struct perfect_ref
- {
- typedef T type;
- typedef typename std::remove_reference<T>::type value_type;
- T&& value;
- constexpr perfect_ref(value_type& x) noexcept
- : value(BOOST_HOF_FORWARD(T)(x))
- {}
- };
- template<std::size_t N>
- struct ignore
- {
- template<class T>
- constexpr ignore(T&&...) noexcept
- {}
- };
- template<std::size_t... N>
- struct args_at
- {
- template<class T, class... Ts>
- constexpr auto operator()(ignore<N>..., T x, Ts...) const
- BOOST_HOF_RETURNS(BOOST_HOF_FORWARD(typename T::type)(x.value));
- };
- template<std::size_t... N>
- constexpr args_at<N...> make_args_at(seq<N...>) noexcept
- {
- return {};
- }
- template<std::size_t N, class... Ts>
- constexpr auto get_args(Ts&&... xs) BOOST_HOF_RETURNS
- (
- boost::hof::detail::make_args_at(typename gens<N>::type())(nullptr, BOOST_HOF_RETURNS_CONSTRUCT(perfect_ref<Ts>)(xs)...)
- );
- template<class T, T N>
- struct make_args_f
- {
- template<class... Ts, class=typename std::enable_if<(N <= sizeof...(Ts))>::type>
- constexpr auto operator()(Ts&&... xs) const BOOST_HOF_RETURNS
- (
- boost::hof::detail::get_args<N>(BOOST_HOF_FORWARD(Ts)(xs)...)
- );
- };
- struct arg_f
- {
- template<class IntegralConstant>
- constexpr make_args_f<std::size_t, IntegralConstant::value> operator()(IntegralConstant) const noexcept
- {
- return make_args_f<std::size_t, IntegralConstant::value>();
- }
- };
- }
- #if BOOST_HOF_HAS_VARIABLE_TEMPLATES
- template<std::size_t N>
- BOOST_HOF_STATIC_CONSTEXPR detail::make_args_f<std::size_t, N> arg_c = {};
- #else
- template<std::size_t N, class... Ts>
- constexpr auto arg_c(Ts&&... xs) BOOST_HOF_RETURNS
- (
- boost::hof::detail::get_args<N>(BOOST_HOF_FORWARD(Ts)(xs)...)
- );
- #endif
- BOOST_HOF_DECLARE_STATIC_VAR(arg, detail::arg_f);
- }}
- #endif
|