123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- #ifndef BOOST_HOF_GUARD_CAPTURE_H
- #define BOOST_HOF_GUARD_CAPTURE_H
- #include <boost/hof/detail/callable_base.hpp>
- #include <boost/hof/detail/compressed_pair.hpp>
- #include <boost/hof/reveal.hpp>
- #include <boost/hof/pack.hpp>
- #include <boost/hof/always.hpp>
- #include <boost/hof/detail/move.hpp>
- #include <boost/hof/detail/result_type.hpp>
- namespace boost { namespace hof {
- namespace detail {
- template<class F, class Pack>
- struct capture_invoke : detail::compressed_pair<detail::callable_base<F>, Pack>, detail::function_result_type<F>
- {
- typedef capture_invoke fit_rewritable1_tag;
- typedef detail::compressed_pair<detail::callable_base<F>, Pack> base;
- BOOST_HOF_INHERIT_CONSTRUCTOR(capture_invoke, base)
- template<class... Ts>
- constexpr const detail::callable_base<F>& base_function(Ts&&... xs) const noexcept
- {
- return this->first(xs...);
- }
- template<class... Ts>
- constexpr const Pack& get_pack(Ts&&...xs) const noexcept
- {
- return this->second(xs...);
- }
- template<class Failure, class... Ts>
- struct unpack_capture_failure
- {
- template<class... Us>
- struct apply
- {
- typedef typename Failure::template of<Us..., Ts...> type;
- };
- };
- struct capture_failure
- {
- template<class Failure>
- struct apply
- {
- template<class... Ts>
- struct of
- : Pack::template apply<unpack_capture_failure<Failure, Ts...>>::type
- {};
- };
- };
- struct failure
- : failure_map<capture_failure, detail::callable_base<F>>
- {};
- BOOST_HOF_RETURNS_CLASS(capture_invoke);
- template<class... Ts>
- constexpr BOOST_HOF_SFINAE_RESULT
- (
- typename result_of<decltype(boost::hof::pack_join),
- id_<const Pack&>,
- result_of<decltype(boost::hof::pack_forward), id_<Ts>...>
- >::type,
- id_<detail::callable_base<F>&&>
- )
- operator()(Ts&&... xs) const BOOST_HOF_SFINAE_RETURNS
- (
- boost::hof::pack_join
- (
- BOOST_HOF_MANGLE_CAST(const Pack&)(BOOST_HOF_CONST_THIS->get_pack(xs...)),
- boost::hof::pack_forward(BOOST_HOF_FORWARD(Ts)(xs)...)
- )
- (BOOST_HOF_RETURNS_C_CAST(detail::callable_base<F>&&)(BOOST_HOF_CONST_THIS->base_function(xs...)))
- );
- };
- template<class Pack>
- struct capture_pack : Pack
- {
- BOOST_HOF_INHERIT_CONSTRUCTOR(capture_pack, Pack);
- BOOST_HOF_RETURNS_CLASS(capture_pack);
-
- template<class F>
- constexpr auto operator()(F f) const BOOST_HOF_SFINAE_RETURNS
- (
- capture_invoke<F, Pack>(BOOST_HOF_RETURNS_STATIC_CAST(F&&)(f),
- BOOST_HOF_RETURNS_C_CAST(Pack&&)(
- BOOST_HOF_RETURNS_STATIC_CAST(const Pack&)(*boost::hof::always(BOOST_HOF_CONST_THIS)(f))
- )
- )
- );
- };
- struct make_capture_pack_f
- {
- template<class Pack>
- constexpr capture_pack<Pack> operator()(Pack p) const
- BOOST_HOF_NOEXCEPT_CONSTRUCTIBLE(capture_pack<Pack>, Pack&&)
- {
- return capture_pack<Pack>(static_cast<Pack&&>(p));
- }
- };
- template<class F>
- struct capture_f
- {
- template<class... Ts>
- constexpr auto operator()(Ts&&... xs) const BOOST_HOF_RETURNS
- (
- BOOST_HOF_RETURNS_CONSTRUCT(make_capture_pack_f)()(BOOST_HOF_RETURNS_CONSTRUCT(F)()(BOOST_HOF_FORWARD(Ts)(xs)...))
- );
- };
- }
- BOOST_HOF_DECLARE_STATIC_VAR(capture_basic, detail::capture_f<detail::pack_basic_f>);
- BOOST_HOF_DECLARE_STATIC_VAR(capture_forward, detail::capture_f<detail::pack_forward_f>);
- BOOST_HOF_DECLARE_STATIC_VAR(capture, detail::capture_f<detail::pack_f>);
- }}
- #endif
|