2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-04-09 16:38:55 +00:00
|
|
|
#ifndef SPROUT_FUNCTIONAL_BIND_BIND_HPP
|
|
|
|
#define SPROUT_FUNCTIONAL_BIND_BIND_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <utility>
|
|
|
|
#include <tuple>
|
|
|
|
#include <type_traits>
|
2013-07-08 15:58:31 +00:00
|
|
|
#include <functional>
|
2012-04-09 16:38:55 +00:00
|
|
|
#include <sprout/config.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/metafunction.hpp>
|
2012-04-09 16:38:55 +00:00
|
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
#include <sprout/utility/lvalue_forward.hpp>
|
2013-02-07 15:49:47 +00:00
|
|
|
#include <sprout/tuple/tuple/tuple.hpp>
|
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
2013-02-10 02:54:54 +00:00
|
|
|
#include <sprout/tuple/tuple/make_tuple.hpp>
|
2013-07-09 14:15:53 +00:00
|
|
|
#include <sprout/type/algorithm/find_index_if.hpp>
|
2013-07-10 03:15:11 +00:00
|
|
|
#include <sprout/type/algorithm/lower_bound_index.hpp>
|
2013-07-10 09:06:19 +00:00
|
|
|
#include <sprout/type/type_tuple.hpp>
|
2013-07-09 14:15:53 +00:00
|
|
|
#include <sprout/type/integral_array.hpp>
|
2012-04-09 16:38:55 +00:00
|
|
|
#include <sprout/functional/ref.hpp>
|
|
|
|
#include <sprout/functional/mem_fn.hpp>
|
2012-11-15 02:54:57 +00:00
|
|
|
#include <sprout/functional/type_traits/weak_result_type.hpp>
|
2013-07-07 10:10:25 +00:00
|
|
|
#include <sprout/functional/bind/placeholder.hpp>
|
2013-11-22 12:11:08 +00:00
|
|
|
#include <sprout/type_traits/integral_constant.hpp>
|
2012-04-09 16:38:55 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
// 20.8.9 bind
|
|
|
|
|
2013-07-07 10:10:25 +00:00
|
|
|
//
|
|
|
|
// is_bind_expression
|
|
|
|
//
|
2012-04-09 16:38:55 +00:00
|
|
|
template<typename T>
|
|
|
|
struct is_bind_expression
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::false_type
|
2012-04-09 16:38:55 +00:00
|
|
|
{};
|
|
|
|
template<typename T>
|
|
|
|
struct is_bind_expression<T const>
|
|
|
|
: public sprout::is_bind_expression<T>
|
|
|
|
{};
|
2012-04-13 12:23:49 +00:00
|
|
|
template<typename T>
|
|
|
|
struct is_bind_expression<T volatile>
|
|
|
|
: public sprout::is_bind_expression<T>
|
|
|
|
{};
|
|
|
|
template<typename T>
|
|
|
|
struct is_bind_expression<T const volatile>
|
|
|
|
: public sprout::is_bind_expression<T>
|
|
|
|
{};
|
2012-04-09 16:38:55 +00:00
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
struct no_tuple_element;
|
|
|
|
|
|
|
|
template<std::size_t I, typename Tuple, bool IsSafe>
|
|
|
|
struct safe_tuple_element_impl
|
|
|
|
: tuple_element<I, Tuple>
|
|
|
|
{};
|
|
|
|
template<std::size_t I, typename Tuple>
|
|
|
|
struct safe_tuple_element_impl<I, Tuple, false> {
|
|
|
|
public:
|
|
|
|
typedef sprout::detail::no_tuple_element type;
|
|
|
|
};
|
|
|
|
template<std::size_t I, typename Tuple>
|
|
|
|
struct safe_tuple_element
|
|
|
|
: public sprout::detail::safe_tuple_element_impl<I, Tuple, (I < sprout::tuples::tuple_size<Tuple>::value)>
|
|
|
|
{};
|
|
|
|
|
|
|
|
template<
|
|
|
|
typename Arg,
|
|
|
|
bool IsBindExp = sprout::is_bind_expression<Arg>::value,
|
|
|
|
bool IsPlaceholder = (sprout::is_placeholder<Arg>::value > 0)
|
|
|
|
>
|
|
|
|
class mu;
|
|
|
|
template<typename T>
|
|
|
|
class mu<sprout::reference_wrapper<T>, false, false> {
|
|
|
|
public:
|
|
|
|
typedef T& result_type;
|
|
|
|
public:
|
|
|
|
template<typename CVRef, typename Tuple>
|
|
|
|
SPROUT_CONSTEXPR result_type operator()(CVRef& arg, Tuple&) const volatile {
|
|
|
|
return const_cast<typename std::remove_volatile<typename std::remove_reference<CVRef>::type>::type&>(arg).get();
|
|
|
|
}
|
|
|
|
};
|
2013-07-08 15:58:31 +00:00
|
|
|
template<typename T>
|
|
|
|
class mu<std::reference_wrapper<T>, false, false> {
|
|
|
|
public:
|
|
|
|
typedef T& result_type;
|
|
|
|
public:
|
|
|
|
template<typename CVRef, typename Tuple>
|
|
|
|
SPROUT_CONSTEXPR result_type operator()(CVRef& arg, Tuple&) const volatile {
|
|
|
|
return const_cast<typename std::remove_volatile<typename std::remove_reference<CVRef>::type>::type&>(arg).get();
|
|
|
|
}
|
|
|
|
};
|
2012-04-09 16:38:55 +00:00
|
|
|
template<typename Arg>
|
|
|
|
class mu<Arg, true, false> {
|
|
|
|
private:
|
|
|
|
template<typename CVArg, typename... Args, sprout::index_t... Indexes>
|
|
|
|
SPROUT_CONSTEXPR auto call(
|
|
|
|
CVArg& arg,
|
|
|
|
sprout::tuples::tuple<Args...>& tuple,
|
|
|
|
sprout::index_tuple<Indexes...>
|
|
|
|
) const volatile
|
2012-10-05 15:58:56 +00:00
|
|
|
-> decltype(arg(std::declval<Args>()...))
|
2012-04-09 16:38:55 +00:00
|
|
|
{
|
2014-02-22 07:32:51 +00:00
|
|
|
return arg(SPROUT_FORWARD(Args, sprout::tuples::get<Indexes>(tuple))...);
|
2012-04-09 16:38:55 +00:00
|
|
|
}
|
|
|
|
public:
|
|
|
|
template<typename CVArg, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR auto operator()(CVArg& arg, sprout::tuples::tuple<Args...>& tuple) const volatile
|
2012-10-05 15:58:56 +00:00
|
|
|
-> decltype(arg(std::declval<Args>()...))
|
2012-04-09 16:38:55 +00:00
|
|
|
{
|
2013-05-10 10:52:39 +00:00
|
|
|
return call(arg, tuple, sprout::index_pack<Args...>::make());
|
2012-04-09 16:38:55 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename Arg>
|
|
|
|
class mu<Arg, false, true> {
|
|
|
|
public:
|
|
|
|
template<typename Signature>
|
|
|
|
class result;
|
|
|
|
template<typename CVMu, typename CVArg, typename Tuple>
|
|
|
|
class result<CVMu (CVArg, Tuple)> {
|
|
|
|
private:
|
|
|
|
typedef typename sprout::detail::safe_tuple_element<
|
|
|
|
(sprout::is_placeholder<Arg>::value - 1),
|
|
|
|
Tuple
|
|
|
|
>::type base_type;
|
|
|
|
public:
|
|
|
|
typedef typename std::add_rvalue_reference<base_type>::type type;
|
|
|
|
};
|
|
|
|
public:
|
|
|
|
template<typename Tuple>
|
|
|
|
typename result<mu (Arg, Tuple)>::type
|
2013-07-08 15:58:31 +00:00
|
|
|
SPROUT_CONSTEXPR operator()(Arg /*const volatile&*/, Tuple& tuple) const volatile {
|
2014-02-22 07:32:51 +00:00
|
|
|
typedef typename result<mu (Arg, Tuple)>::type type;
|
|
|
|
return SPROUT_FORWARD(type, sprout::tuples::get<(sprout::is_placeholder<Arg>::value - 1)>(tuple));
|
2012-04-09 16:38:55 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename Arg>
|
|
|
|
class mu<Arg, false, false> {
|
|
|
|
public:
|
|
|
|
template<typename Signature>
|
|
|
|
struct result;
|
|
|
|
template<typename CVMu, typename CVArg, typename Tuple>
|
|
|
|
struct result<CVMu (CVArg, Tuple)> {
|
|
|
|
public:
|
|
|
|
typedef typename std::add_lvalue_reference<CVArg>::type type;
|
|
|
|
};
|
|
|
|
public:
|
|
|
|
template<typename CVArg, typename Tuple>
|
|
|
|
SPROUT_CONSTEXPR CVArg&& operator()(CVArg&& arg, Tuple&) const volatile {
|
2014-02-22 07:32:51 +00:00
|
|
|
return SPROUT_FORWARD(CVArg, arg);
|
2012-04-09 16:38:55 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct maybe_wrap_member_pointer {
|
|
|
|
public:
|
|
|
|
typedef T type;
|
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR T const& do_wrap(T const& x) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR T&& do_wrap(T&& x) {
|
|
|
|
return static_cast<T&&>(x);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename T, typename Class>
|
|
|
|
struct maybe_wrap_member_pointer<T Class::*> {
|
|
|
|
public:
|
|
|
|
typedef sprout::mem_fn_adaptor<T Class::*> type;
|
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR type do_wrap(T Class::* pm) {
|
|
|
|
return type(pm);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<>
|
|
|
|
struct maybe_wrap_member_pointer<void> {
|
|
|
|
public:
|
|
|
|
typedef void type;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<std::size_t I, typename... Types>
|
2013-07-08 15:58:31 +00:00
|
|
|
inline SPROUT_CONSTEXPR auto volget(sprout::tuples::tuple<Types...> volatile& tuple)
|
2012-10-05 15:58:56 +00:00
|
|
|
-> typename sprout::tuples::tuple_element<I, sprout::tuples::tuple<Types...> >::type volatile&
|
2012-04-09 16:38:55 +00:00
|
|
|
{
|
|
|
|
return sprout::tuples::get<I>(const_cast<sprout::tuples::tuple<Types...>&>(tuple));
|
|
|
|
}
|
|
|
|
template<std::size_t I, typename... Types>
|
|
|
|
inline SPROUT_CONSTEXPR auto volget(sprout::tuples::tuple<Types...> const volatile& tuple)
|
2012-10-05 15:58:56 +00:00
|
|
|
-> typename sprout::tuples::tuple_element<I, sprout::tuples::tuple<Types...> >::type const volatile&
|
2012-04-09 16:38:55 +00:00
|
|
|
{
|
|
|
|
return sprout::tuples::get<I>(const_cast<sprout::tuples::tuple<Types...> const&>(tuple));
|
|
|
|
}
|
2013-07-08 15:58:31 +00:00
|
|
|
|
2013-07-09 14:15:53 +00:00
|
|
|
struct is_variadic_placeholder_pred {
|
|
|
|
public:
|
|
|
|
template<typename T>
|
|
|
|
struct apply
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::integral_constant<
|
2013-07-10 03:15:11 +00:00
|
|
|
bool,
|
|
|
|
(sprout::is_variadic_placeholder<T>::value > 0)
|
|
|
|
>
|
2013-07-09 14:15:53 +00:00
|
|
|
{};
|
|
|
|
};
|
2013-07-08 15:58:31 +00:00
|
|
|
template<typename Bounds, typename = void>
|
2013-07-09 14:15:53 +00:00
|
|
|
struct is_variadic_bounds
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::integral_constant<
|
2013-07-09 14:15:53 +00:00
|
|
|
bool,
|
|
|
|
(sprout::types::find_index_if<Bounds, sprout::detail::is_variadic_placeholder_pred>::value != sprout::tuples::tuple_size<Bounds>::value)
|
|
|
|
>
|
|
|
|
{};
|
|
|
|
|
|
|
|
template<typename T>
|
2013-07-10 03:15:11 +00:00
|
|
|
struct tail_place
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::integral_constant<int, sprout::is_variadic_placeholder<T>::value - 1>
|
2013-07-08 15:58:31 +00:00
|
|
|
{};
|
|
|
|
|
2013-07-09 14:15:53 +00:00
|
|
|
template<typename T, std::size_t ArgSize, typename = void>
|
|
|
|
struct bound_size
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::integral_constant<std::size_t, 1>
|
2013-07-09 14:15:53 +00:00
|
|
|
{};
|
|
|
|
template<typename T, std::size_t ArgSize>
|
|
|
|
struct bound_size<
|
|
|
|
T, ArgSize,
|
2013-07-10 03:15:11 +00:00
|
|
|
typename std::enable_if<(sprout::is_variadic_placeholder<T>::value > 0)>::type
|
2013-07-09 14:15:53 +00:00
|
|
|
>
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::integral_constant<
|
2013-07-08 15:58:31 +00:00
|
|
|
std::size_t,
|
2013-07-09 14:15:53 +00:00
|
|
|
(ArgSize - sprout::detail::tail_place<T>::value)
|
|
|
|
>
|
2013-07-08 15:58:31 +00:00
|
|
|
{};
|
|
|
|
|
2013-07-09 14:15:53 +00:00
|
|
|
template<std::size_t I, typename Bounds, std::size_t ArgSize, typename = void>
|
|
|
|
struct bounds_size_impl
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::integral_constant<std::size_t, 0>
|
2013-07-08 15:58:31 +00:00
|
|
|
{};
|
2013-07-09 14:15:53 +00:00
|
|
|
template<std::size_t I, typename Bounds, std::size_t ArgSize>
|
|
|
|
struct bounds_size_impl<
|
2013-11-08 14:20:43 +00:00
|
|
|
I, Bounds, ArgSize,
|
2013-07-09 14:15:53 +00:00
|
|
|
typename std::enable_if<(I < sprout::tuples::tuple_size<Bounds>::value)>::type
|
|
|
|
>
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::integral_constant<
|
2013-07-09 14:15:53 +00:00
|
|
|
std::size_t,
|
|
|
|
(sprout::detail::bound_size<typename sprout::tuples::tuple_element<I, Bounds>::type, ArgSize>::value
|
|
|
|
+ sprout::detail::bounds_size_impl<I + 1, Bounds, ArgSize>::value
|
|
|
|
)
|
2013-07-08 15:58:31 +00:00
|
|
|
>
|
|
|
|
{};
|
2013-07-09 14:15:53 +00:00
|
|
|
template<typename Bounds, std::size_t ArgSize>
|
|
|
|
struct bounds_size
|
|
|
|
: public sprout::detail::bounds_size_impl<0, Bounds, ArgSize>
|
|
|
|
{};
|
2013-07-08 15:58:31 +00:00
|
|
|
|
2013-07-09 14:15:53 +00:00
|
|
|
template<std::size_t I, typename Bounds, std::size_t ArgSize, std::size_t Current, typename Seq, typename = void>
|
|
|
|
struct bounds_partial_size_impl {
|
|
|
|
public:
|
|
|
|
typedef Seq type;
|
|
|
|
};
|
|
|
|
template<std::size_t I, typename Bounds, std::size_t ArgSize, std::size_t Current, std::size_t... Elems>
|
|
|
|
struct bounds_partial_size_impl<
|
|
|
|
I, Bounds, ArgSize, Current, sprout::types::integral_array<std::size_t, Elems...>,
|
|
|
|
typename std::enable_if<(I < sprout::tuples::tuple_size<Bounds>::value)>::type
|
|
|
|
>
|
|
|
|
: public sprout::detail::bounds_partial_size_impl<
|
|
|
|
I + 1, Bounds, ArgSize,
|
|
|
|
Current + sprout::detail::bound_size<typename sprout::tuples::tuple_element<I, Bounds>::type, ArgSize>::value,
|
|
|
|
sprout::types::integral_array<std::size_t, Elems..., Current>
|
|
|
|
>
|
2013-07-08 15:58:31 +00:00
|
|
|
{};
|
2013-07-09 14:15:53 +00:00
|
|
|
template<typename Bounds, std::size_t ArgSize>
|
|
|
|
struct bounds_partial_size
|
|
|
|
: public sprout::detail::bounds_partial_size_impl<0, Bounds, ArgSize, 0, sprout::types::integral_array<std::size_t> >
|
|
|
|
{};
|
|
|
|
|
|
|
|
template<typename Bounds, std::size_t ArgSize>
|
|
|
|
struct bound_indexes
|
|
|
|
: public sprout::make_index_tuple<sprout::detail::bounds_size<Bounds, ArgSize>::value>
|
|
|
|
{};
|
|
|
|
|
|
|
|
template<sprout::index_t I, typename Bounds, std::size_t ArgSize>
|
|
|
|
struct bound_position
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::integral_constant<
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::index_t,
|
2013-07-10 03:15:11 +00:00
|
|
|
(sprout::types::lower_bound_index<
|
2013-07-09 14:15:53 +00:00
|
|
|
typename sprout::detail::bounds_partial_size<Bounds, ArgSize>::type,
|
2013-11-22 12:11:08 +00:00
|
|
|
sprout::integral_constant<std::size_t, I + 1>
|
2013-07-09 14:15:53 +00:00
|
|
|
>::type::value - 1
|
|
|
|
)
|
|
|
|
>
|
|
|
|
{};
|
|
|
|
|
|
|
|
template<sprout::index_t I, typename Bounds, std::size_t ArgSize>
|
|
|
|
struct is_variadic_part
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::integral_constant<
|
2013-07-10 03:15:11 +00:00
|
|
|
bool,
|
|
|
|
(sprout::is_variadic_placeholder<
|
|
|
|
typename sprout::tuples::tuple_element<
|
|
|
|
sprout::detail::bound_position<I, Bounds, ArgSize>::value,
|
|
|
|
Bounds
|
|
|
|
>::type
|
|
|
|
>::value > 0
|
|
|
|
)
|
2013-07-09 14:15:53 +00:00
|
|
|
>
|
|
|
|
{};
|
|
|
|
|
|
|
|
template<sprout::index_t I, typename Bounds, std::size_t ArgSize, sprout::index_t BoundPos, typename SizeSeq, typename = void>
|
|
|
|
struct bound_element_impl
|
|
|
|
: public sprout::tuples::tuple_element<BoundPos, Bounds>
|
|
|
|
{};
|
|
|
|
template<sprout::index_t I, typename Bounds, std::size_t ArgSize, sprout::index_t BoundPos, typename SizeSeq>
|
|
|
|
struct bound_element_impl<
|
|
|
|
I, Bounds, ArgSize, BoundPos, SizeSeq,
|
|
|
|
typename std::enable_if<sprout::detail::is_variadic_part<I, Bounds, ArgSize>::value>::type
|
|
|
|
> {
|
2013-07-08 15:58:31 +00:00
|
|
|
public:
|
2013-07-09 14:15:53 +00:00
|
|
|
typedef sprout::placeholder<
|
|
|
|
(I + 1
|
|
|
|
- sprout::tuples::tuple_element<BoundPos, SizeSeq>::type::value
|
|
|
|
+ sprout::detail::tail_place<typename sprout::tuples::tuple_element<BoundPos, Bounds>::type>::value
|
|
|
|
)
|
|
|
|
> type;
|
2013-07-08 15:58:31 +00:00
|
|
|
};
|
2013-07-09 14:15:53 +00:00
|
|
|
template<sprout::index_t I, typename Bounds, std::size_t ArgSize>
|
|
|
|
struct bound_element
|
|
|
|
: public sprout::detail::bound_element_impl<
|
|
|
|
I, Bounds, ArgSize, sprout::detail::bound_position<I, Bounds, ArgSize>::value,
|
|
|
|
typename sprout::detail::bounds_partial_size<Bounds, ArgSize>::type
|
|
|
|
>
|
2013-07-08 15:58:31 +00:00
|
|
|
{};
|
|
|
|
|
|
|
|
struct get_bound_helper {
|
|
|
|
public:
|
|
|
|
template<
|
|
|
|
sprout::index_t I, typename Bounds,
|
|
|
|
typename sprout::enabler_if<!std::is_const<Bounds>::value && !std::is_volatile<Bounds>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
static SPROUT_CONSTEXPR auto
|
|
|
|
get_bound(Bounds& bound_args)
|
|
|
|
-> decltype(sprout::tuples::get<I>(bound_args))
|
|
|
|
{
|
|
|
|
return sprout::tuples::get<I>(bound_args);
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
sprout::index_t I, typename Bounds,
|
|
|
|
typename sprout::enabler_if<std::is_const<Bounds const>::value && !std::is_volatile<Bounds const>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
static SPROUT_CONSTEXPR auto
|
|
|
|
get_bound(Bounds const& bound_args)
|
|
|
|
-> decltype(sprout::tuples::get<I>(bound_args))
|
|
|
|
{
|
|
|
|
return sprout::tuples::get<I>(bound_args);
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
sprout::index_t I, typename Bounds,
|
|
|
|
typename sprout::enabler_if<!std::is_const<Bounds volatile>::value && std::is_volatile<Bounds volatile>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
static SPROUT_CONSTEXPR auto
|
|
|
|
get_bound(Bounds volatile& bound_args)
|
|
|
|
-> decltype(sprout::detail::volget<I>(bound_args))
|
|
|
|
{
|
|
|
|
return sprout::detail::volget<I>(bound_args);
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
sprout::index_t I, typename Bounds,
|
|
|
|
typename sprout::enabler_if<std::is_const<Bounds const volatile>::value && std::is_volatile<Bounds const volatile>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
static SPROUT_CONSTEXPR auto
|
|
|
|
get_bound(Bounds const volatile& bound_args)
|
|
|
|
-> decltype(sprout::detail::volget<I>(bound_args))
|
|
|
|
{
|
|
|
|
return sprout::detail::volget<I>(bound_args);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::index_t I, std::size_t ArgSize, typename Bounds,
|
|
|
|
typename sprout::enabler_if<sprout::detail::is_variadic_part<I, typename std::remove_reference<Bounds>::type, ArgSize>::value>::type = sprout::enabler
|
2013-07-08 15:58:31 +00:00
|
|
|
>
|
2013-07-09 14:15:53 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::detail::bound_element<I, typename std::remove_reference<Bounds>::type, ArgSize>::type
|
2013-07-08 15:58:31 +00:00
|
|
|
get_bound(Bounds&&) {
|
2013-07-09 14:15:53 +00:00
|
|
|
typedef typename sprout::detail::bound_element<I, typename std::remove_reference<Bounds>::type, ArgSize>::type type;
|
2013-07-08 15:58:31 +00:00
|
|
|
return type();
|
|
|
|
}
|
|
|
|
template<
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::index_t I, std::size_t ArgSize, typename Bounds,
|
|
|
|
typename sprout::enabler_if<!sprout::detail::is_variadic_part<I, typename std::remove_reference<Bounds>::type, ArgSize>::value>::type = sprout::enabler
|
2013-07-08 15:58:31 +00:00
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR auto
|
|
|
|
get_bound(Bounds&& bound_args)
|
2013-07-09 14:15:53 +00:00
|
|
|
-> decltype(
|
|
|
|
sprout::detail::get_bound_helper::get_bound<
|
|
|
|
sprout::detail::bound_position<I, typename std::remove_reference<Bounds>::type, ArgSize>::value
|
2014-02-22 07:32:51 +00:00
|
|
|
>(SPROUT_FORWARD(Bounds, bound_args))
|
2013-07-09 14:15:53 +00:00
|
|
|
)
|
2013-07-08 15:58:31 +00:00
|
|
|
{
|
2013-07-09 14:15:53 +00:00
|
|
|
return sprout::detail::get_bound_helper::get_bound<
|
|
|
|
sprout::detail::bound_position<I, typename std::remove_reference<Bounds>::type, ArgSize>::value
|
2014-02-22 07:32:51 +00:00
|
|
|
>(SPROUT_FORWARD(Bounds, bound_args));
|
2013-07-08 15:58:31 +00:00
|
|
|
}
|
2012-04-09 16:38:55 +00:00
|
|
|
} // namespace detail
|
|
|
|
|
2013-07-15 07:23:43 +00:00
|
|
|
namespace detail {
|
|
|
|
template<typename Signature>
|
|
|
|
class binder_impl;
|
|
|
|
template<typename Functor, typename... BoundArgs>
|
|
|
|
class binder_impl<Functor(BoundArgs...)>
|
|
|
|
: public sprout::weak_result_type<Functor>
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
typedef sprout::tuples::tuple<BoundArgs...> bounds_type;
|
|
|
|
private:
|
|
|
|
Functor f_;
|
|
|
|
bounds_type bound_args_;
|
|
|
|
protected:
|
|
|
|
template<typename Result, typename... Args, sprout::index_t... Indexes>
|
|
|
|
Result call(sprout::tuples::tuple<Args...>&& args, sprout::index_tuple<Indexes...>) {
|
|
|
|
return f_(
|
|
|
|
sprout::detail::mu<typename sprout::detail::bound_element<Indexes, bounds_type, sizeof...(Args)>::type>()
|
|
|
|
(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename Result, typename... Args, sprout::index_t... Indexes>
|
|
|
|
SPROUT_CONSTEXPR Result call_c(sprout::tuples::tuple<Args...>&& args, sprout::index_tuple<Indexes...>) const {
|
|
|
|
return f_(
|
|
|
|
sprout::detail::mu<typename sprout::detail::bound_element<Indexes, bounds_type, sizeof...(Args)>::type const>()
|
|
|
|
(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename Result, typename... Args, sprout::index_t... Indexes>
|
|
|
|
Result call_v(sprout::tuples::tuple<Args...>&& args, sprout::index_tuple<Indexes...>) volatile {
|
|
|
|
return f_(
|
|
|
|
sprout::detail::mu<typename sprout::detail::bound_element<Indexes, bounds_type, sizeof...(Args)>::type volatile>()
|
|
|
|
(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename Result, typename... Args, sprout::index_t... Indexes>
|
|
|
|
SPROUT_CONSTEXPR Result call_cv(sprout::tuples::tuple<Args...>&& args, sprout::index_tuple<Indexes...>) const volatile {
|
|
|
|
return f_(
|
|
|
|
sprout::detail::mu<typename sprout::detail::bound_element<Indexes, bounds_type, sizeof...(Args)>::type const volatile>()
|
|
|
|
(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...
|
|
|
|
);
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
template<
|
|
|
|
typename... Args, sprout::index_t... Indexes
|
|
|
|
>
|
|
|
|
static decltype(
|
|
|
|
std::declval<Functor&>()(
|
|
|
|
sprout::detail::mu<typename sprout::detail::bound_element<Indexes, bounds_type, sizeof...(Args)>::type>()
|
|
|
|
(sprout::detail::get_bound<Indexes, sizeof...(Args)>(std::declval<bounds_type&>()), std::declval<sprout::tuples::tuple<Args...>&>())...
|
|
|
|
)
|
|
|
|
)
|
|
|
|
call_(sprout::tuples::tuple<Args...>&& args, sprout::index_tuple<Indexes...>);
|
|
|
|
template<
|
|
|
|
typename... Args, sprout::index_t... Indexes
|
|
|
|
>
|
|
|
|
static decltype(
|
|
|
|
std::declval<typename std::enable_if<(sizeof...(Args) >= 0), typename std::add_const<Functor>::type>::type&>()(
|
|
|
|
sprout::detail::mu<typename sprout::detail::bound_element<Indexes, bounds_type, sizeof...(Args)>::type const>()
|
|
|
|
(sprout::detail::get_bound<Indexes, sizeof...(Args)>(std::declval<bounds_type const&>()), std::declval<sprout::tuples::tuple<Args...>&>())...
|
|
|
|
)
|
|
|
|
)
|
|
|
|
call_c_(sprout::tuples::tuple<Args...>&& args, sprout::index_tuple<Indexes...>);
|
|
|
|
template<
|
|
|
|
typename... Args, sprout::index_t... Indexes
|
|
|
|
>
|
|
|
|
static decltype(
|
|
|
|
std::declval<typename std::enable_if<(sizeof...(Args) >= 0), typename std::add_volatile<Functor>::type>::type&>()(
|
|
|
|
sprout::detail::mu<typename sprout::detail::bound_element<Indexes, bounds_type, sizeof...(Args)>::type volatile>()
|
|
|
|
(sprout::detail::get_bound<Indexes, sizeof...(Args)>(std::declval<bounds_type volatile&>()), std::declval<sprout::tuples::tuple<Args...>&>())...
|
|
|
|
)
|
|
|
|
)
|
|
|
|
call_v_(sprout::tuples::tuple<Args...>&& args, sprout::index_tuple<Indexes...>);
|
|
|
|
template<
|
|
|
|
typename... Args, sprout::index_t... Indexes
|
|
|
|
>
|
|
|
|
static decltype(
|
|
|
|
std::declval<typename std::enable_if<(sizeof...(Args) >= 0), typename std::add_cv<Functor>::type>::type&>()(
|
|
|
|
sprout::detail::mu<typename sprout::detail::bound_element<Indexes, bounds_type, sizeof...(Args)>::type const volatile>()
|
|
|
|
(sprout::detail::get_bound<Indexes, sizeof...(Args)>(std::declval<bounds_type const volatile&>()), std::declval<sprout::tuples::tuple<Args...>&>())...
|
|
|
|
)
|
|
|
|
)
|
|
|
|
call_cv_(sprout::tuples::tuple<Args...>&& args, sprout::index_tuple<Indexes...>);
|
|
|
|
public:
|
|
|
|
template<typename... Args>
|
|
|
|
explicit SPROUT_CONSTEXPR binder_impl(Functor const& f, Args&&... args)
|
|
|
|
: f_(f)
|
2014-02-22 07:32:51 +00:00
|
|
|
, bound_args_(SPROUT_FORWARD(Args, args)...)
|
2013-07-15 07:23:43 +00:00
|
|
|
{}
|
|
|
|
binder_impl(binder_impl const&) = default;
|
|
|
|
};
|
|
|
|
} // namespace detail
|
2012-04-09 16:38:55 +00:00
|
|
|
//
|
|
|
|
// binder
|
|
|
|
//
|
|
|
|
template<typename Signature>
|
2012-06-23 23:22:12 +00:00
|
|
|
class binder;
|
2012-04-09 16:38:55 +00:00
|
|
|
template<typename Functor, typename... BoundArgs>
|
|
|
|
class binder<Functor(BoundArgs...)>
|
2013-07-15 07:23:43 +00:00
|
|
|
: private sprout::detail::binder_impl<Functor(BoundArgs...)>
|
2012-04-09 16:38:55 +00:00
|
|
|
{
|
|
|
|
private:
|
2013-07-15 07:23:43 +00:00
|
|
|
typedef sprout::detail::binder_impl<Functor(BoundArgs...)> impl_type;
|
|
|
|
typedef typename impl_type::bounds_type bounds_type;
|
2013-07-08 15:58:31 +00:00
|
|
|
public:
|
2012-04-09 16:38:55 +00:00
|
|
|
template<typename... Args>
|
|
|
|
explicit SPROUT_CONSTEXPR binder(Functor const& f, Args&&... args)
|
2014-02-22 07:32:51 +00:00
|
|
|
: impl_type(f, SPROUT_FORWARD(Args, args)...)
|
2012-04-09 16:38:55 +00:00
|
|
|
{}
|
|
|
|
binder(binder const&) = default;
|
|
|
|
template<
|
|
|
|
typename... Args,
|
|
|
|
typename Result = decltype(
|
2013-07-15 07:23:43 +00:00
|
|
|
impl_type::template call_(std::declval<sprout::tuples::tuple<Args...> >(), sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make())
|
2012-04-09 16:38:55 +00:00
|
|
|
)
|
|
|
|
>
|
|
|
|
Result operator()(Args&&... args) {
|
2013-07-15 07:23:43 +00:00
|
|
|
return impl_type::template call<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
2012-04-09 16:38:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
typename... Args,
|
|
|
|
typename Result = decltype(
|
2013-07-15 07:23:43 +00:00
|
|
|
impl_type::template call_c_(std::declval<sprout::tuples::tuple<Args...> >(), sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make())
|
2012-04-09 16:38:55 +00:00
|
|
|
)
|
|
|
|
>
|
|
|
|
SPROUT_CONSTEXPR Result operator()(Args&&... args) const {
|
2013-07-15 07:23:43 +00:00
|
|
|
return impl_type::template call_c<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
2012-04-09 16:38:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
typename... Args,
|
|
|
|
typename Result = decltype(
|
2013-07-15 07:23:43 +00:00
|
|
|
impl_type::template call_v_(std::declval<sprout::tuples::tuple<Args...> >(), sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make())
|
2012-04-09 16:38:55 +00:00
|
|
|
)
|
|
|
|
>
|
|
|
|
Result operator()(Args&&... args) volatile {
|
2013-07-15 07:23:43 +00:00
|
|
|
return impl_type::template call_v<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-15 07:23:43 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
typename... Args,
|
|
|
|
typename Result = decltype(
|
|
|
|
impl_type::template call_cv_(std::declval<sprout::tuples::tuple<Args...> >(), sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make())
|
|
|
|
)
|
|
|
|
>
|
|
|
|
SPROUT_CONSTEXPR Result operator()(Args&&... args) const volatile {
|
|
|
|
return impl_type::template call_cv<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-15 07:23:43 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
//
|
|
|
|
// cbinder
|
|
|
|
//
|
|
|
|
template<typename Signature>
|
|
|
|
class cbinder;
|
|
|
|
template<typename Functor, typename... BoundArgs>
|
|
|
|
class cbinder<Functor(BoundArgs...)>
|
|
|
|
: private sprout::detail::binder_impl<Functor(BoundArgs...)>
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
typedef sprout::detail::binder_impl<Functor(BoundArgs...)> impl_type;
|
|
|
|
typedef typename impl_type::bounds_type bounds_type;
|
|
|
|
public:
|
|
|
|
template<typename... Args>
|
|
|
|
explicit SPROUT_CONSTEXPR cbinder(Functor const& f, Args&&... args)
|
2014-02-22 07:32:51 +00:00
|
|
|
: impl_type(f, SPROUT_FORWARD(Args, args)...)
|
2013-07-15 07:23:43 +00:00
|
|
|
{}
|
|
|
|
cbinder(cbinder const&) = default;
|
|
|
|
template<
|
|
|
|
typename... Args,
|
|
|
|
typename Result = decltype(
|
|
|
|
impl_type::template call_c_(std::declval<sprout::tuples::tuple<Args...> >(), sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make())
|
|
|
|
)
|
|
|
|
>
|
|
|
|
SPROUT_CONSTEXPR Result operator()(Args&&... args) const {
|
|
|
|
return impl_type::template call_c<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
2012-04-09 16:38:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
typename... Args,
|
|
|
|
typename Result = decltype(
|
2013-07-15 07:23:43 +00:00
|
|
|
impl_type::template call_cv_(std::declval<sprout::tuples::tuple<Args...> >(), sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make())
|
2012-04-09 16:38:55 +00:00
|
|
|
)
|
|
|
|
>
|
|
|
|
SPROUT_CONSTEXPR Result operator()(Args&&... args) const volatile {
|
2013-07-15 07:23:43 +00:00
|
|
|
return impl_type::template call_cv<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
2012-04-09 16:38:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-07-15 07:23:43 +00:00
|
|
|
namespace detail {
|
|
|
|
template<typename Result, typename Signature>
|
|
|
|
class res_binder_impl;
|
|
|
|
template<typename Result, typename Functor, typename... BoundArgs>
|
|
|
|
class res_binder_impl<Result, Functor(BoundArgs...)> {
|
|
|
|
public:
|
|
|
|
typedef Result result_type;
|
|
|
|
protected:
|
|
|
|
typedef sprout::tuples::tuple<BoundArgs...> bounds_type;
|
|
|
|
private:
|
|
|
|
template<typename Res>
|
|
|
|
struct enable_if_void
|
|
|
|
: public std::enable_if<std::is_void<Res>::value, int>
|
|
|
|
{};
|
|
|
|
template<typename Res>
|
|
|
|
struct disable_if_void
|
|
|
|
: public std::enable_if<!std::is_void<Res>::value, int>
|
|
|
|
{};
|
|
|
|
private:
|
|
|
|
Functor f_;
|
|
|
|
sprout::tuples::tuple<BoundArgs...> bound_args_;
|
|
|
|
protected:
|
|
|
|
template<typename Res, typename... Args, sprout::index_t... Indexes>
|
|
|
|
Result call(
|
|
|
|
sprout::tuples::tuple<Args...>&& args,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
typename disable_if_void<Res>::type = 0
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return f_(sprout::detail::mu<BoundArgs>()(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...);
|
|
|
|
}
|
|
|
|
template<typename Res, typename... Args, sprout::index_t... Indexes>
|
|
|
|
Result call(
|
|
|
|
sprout::tuples::tuple<Args...>&& args,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
typename enable_if_void<Res>::type = 0
|
|
|
|
)
|
|
|
|
{
|
|
|
|
f_(sprout::detail::mu<BoundArgs>()(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...);
|
|
|
|
}
|
|
|
|
template<typename Res, typename... Args, sprout::index_t... Indexes>
|
|
|
|
SPROUT_CONSTEXPR Result call(
|
|
|
|
sprout::tuples::tuple<Args...>&& args,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
typename disable_if_void<Res>::type = 0
|
|
|
|
) const
|
|
|
|
{
|
|
|
|
return f_(sprout::detail::mu<BoundArgs>()(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...);
|
|
|
|
}
|
|
|
|
template<typename Res, typename... Args, sprout::index_t... Indexes>
|
|
|
|
Result call(
|
|
|
|
sprout::tuples::tuple<Args...>&& args,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
typename enable_if_void<Res>::type = 0
|
|
|
|
) const
|
|
|
|
{
|
|
|
|
f_(sprout::detail::mu<BoundArgs>()(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...);
|
|
|
|
}
|
|
|
|
template<typename Res, typename... Args, sprout::index_t... Indexes>
|
|
|
|
Result call(
|
|
|
|
sprout::tuples::tuple<Args...>&& args,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
typename disable_if_void<Res>::type = 0
|
|
|
|
) volatile
|
|
|
|
{
|
|
|
|
return f_(sprout::detail::mu<BoundArgs>()(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...);
|
|
|
|
}
|
|
|
|
template<typename Res, typename... Args, sprout::index_t... Indexes>
|
|
|
|
Result call(
|
|
|
|
sprout::tuples::tuple<Args...>&& args,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
typename enable_if_void<Res>::type = 0
|
|
|
|
) volatile
|
|
|
|
{
|
|
|
|
f_(sprout::detail::mu<BoundArgs, Indexes>()(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...);
|
|
|
|
}
|
|
|
|
template<typename Res, typename... Args, sprout::index_t... Indexes>
|
|
|
|
SPROUT_CONSTEXPR Result call(
|
|
|
|
sprout::tuples::tuple<Args...>&& args,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
typename disable_if_void<Res>::type = 0
|
|
|
|
) const volatile
|
|
|
|
{
|
|
|
|
return f_(sprout::detail::mu<BoundArgs>()(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...);
|
|
|
|
}
|
|
|
|
template<typename Res, typename... Args, sprout::index_t... Indexes>
|
|
|
|
Result call(
|
|
|
|
sprout::tuples::tuple<Args...>&& args,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
typename enable_if_void<Res>::type = 0
|
|
|
|
) const volatile
|
|
|
|
{
|
|
|
|
f_(sprout::detail::mu<BoundArgs>()(sprout::detail::get_bound<Indexes, sizeof...(Args)>(bound_args_), args)...);
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
template<typename... Args>
|
2013-07-15 13:50:40 +00:00
|
|
|
explicit SPROUT_CONSTEXPR res_binder_impl(Functor const& f, Args&&... args)
|
2013-07-15 07:23:43 +00:00
|
|
|
: f_(f)
|
2014-02-22 07:32:51 +00:00
|
|
|
, bound_args_(SPROUT_FORWARD(Args, args)...)
|
2013-07-15 07:23:43 +00:00
|
|
|
{}
|
|
|
|
res_binder_impl(res_binder_impl const&) = default;
|
|
|
|
};
|
|
|
|
} // namespace detail
|
2012-04-09 16:38:55 +00:00
|
|
|
//
|
2013-07-07 14:05:18 +00:00
|
|
|
// res_binder
|
2012-04-09 16:38:55 +00:00
|
|
|
//
|
|
|
|
template<typename Result, typename Signature>
|
2013-07-07 14:05:18 +00:00
|
|
|
class res_binder;
|
2012-04-09 16:38:55 +00:00
|
|
|
template<typename Result, typename Functor, typename... BoundArgs>
|
2013-07-15 07:23:43 +00:00
|
|
|
class res_binder<Result, Functor(BoundArgs...)>
|
|
|
|
: private sprout::detail::res_binder_impl<Result, Functor(BoundArgs...)>
|
|
|
|
{
|
2012-04-09 16:38:55 +00:00
|
|
|
public:
|
|
|
|
typedef Result result_type;
|
2013-07-15 07:23:43 +00:00
|
|
|
private:
|
|
|
|
typedef sprout::detail::res_binder_impl<Result, Functor(BoundArgs...)> impl_type;
|
|
|
|
typedef typename impl_type::bounds_type bounds_type;
|
|
|
|
public:
|
2012-04-09 16:38:55 +00:00
|
|
|
template<typename... Args>
|
2013-07-07 14:05:18 +00:00
|
|
|
explicit res_binder(Functor const& f, Args&&... args)
|
2014-02-22 07:32:51 +00:00
|
|
|
: impl_type(f, SPROUT_FORWARD(Args, args)...)
|
2012-04-09 16:38:55 +00:00
|
|
|
{}
|
2013-07-07 14:05:18 +00:00
|
|
|
res_binder(res_binder const&) = default;
|
2012-04-09 16:38:55 +00:00
|
|
|
template<typename... Args>
|
|
|
|
result_type operator()(Args&&... args) {
|
2013-07-15 07:23:43 +00:00
|
|
|
return impl_type::template call<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
2012-04-09 16:38:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename... Args>
|
|
|
|
SPROUT_CONSTEXPR result_type operator()(Args&&... args) const {
|
2013-07-15 07:23:43 +00:00
|
|
|
return impl_type::template call<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
2012-04-09 16:38:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename... Args>
|
|
|
|
result_type operator()(Args&&... args) volatile {
|
2013-07-15 07:23:43 +00:00
|
|
|
return impl_type::template call<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
2012-04-09 16:38:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename... Args>
|
|
|
|
SPROUT_CONSTEXPR result_type operator()(Args&&... args) const volatile {
|
2013-07-15 07:23:43 +00:00
|
|
|
return impl_type::template call<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-15 07:23:43 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
//
|
|
|
|
// res_cbinder
|
|
|
|
//
|
|
|
|
template<typename Result, typename Signature>
|
|
|
|
class res_cbinder;
|
|
|
|
template<typename Result, typename Functor, typename... BoundArgs>
|
|
|
|
class res_cbinder<Result, Functor(BoundArgs...)>
|
|
|
|
: private sprout::detail::res_binder_impl<Result, Functor(BoundArgs...)>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef Result result_type;
|
|
|
|
private:
|
|
|
|
typedef sprout::detail::res_binder_impl<Result, Functor(BoundArgs...)> impl_type;
|
|
|
|
typedef typename impl_type::bounds_type bounds_type;
|
|
|
|
public:
|
|
|
|
template<typename... Args>
|
|
|
|
explicit SPROUT_CONSTEXPR res_cbinder(Functor const& f, Args&&... args)
|
2014-02-22 07:32:51 +00:00
|
|
|
: impl_type(f, SPROUT_FORWARD(Args, args)...)
|
2013-07-15 07:23:43 +00:00
|
|
|
{}
|
|
|
|
res_cbinder(res_cbinder const&) = default;
|
|
|
|
template<typename... Args>
|
|
|
|
SPROUT_CONSTEXPR result_type operator()(Args&&... args) const {
|
|
|
|
return impl_type::template call<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-15 07:23:43 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename... Args>
|
|
|
|
SPROUT_CONSTEXPR result_type operator()(Args&&... args) const volatile {
|
|
|
|
return impl_type::template call<Result>(
|
2014-02-22 07:32:51 +00:00
|
|
|
sprout::tuples::forward_as_tuple(SPROUT_FORWARD(Args, args)...),
|
2013-07-09 14:15:53 +00:00
|
|
|
sprout::detail::bound_indexes<bounds_type, sizeof...(Args)>::make()
|
2012-04-09 16:38:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-07-07 10:10:25 +00:00
|
|
|
//
|
|
|
|
// is_bind_expression
|
|
|
|
//
|
2012-04-09 16:38:55 +00:00
|
|
|
template<typename Signature>
|
|
|
|
struct is_bind_expression<sprout::binder<Signature> >
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::true_type
|
2012-04-09 16:38:55 +00:00
|
|
|
{};
|
|
|
|
template<typename Result, typename Signature>
|
2013-07-07 14:05:18 +00:00
|
|
|
struct is_bind_expression<sprout::res_binder<Result, Signature> >
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::true_type
|
2012-04-09 16:38:55 +00:00
|
|
|
{};
|
2013-09-04 03:07:54 +00:00
|
|
|
template<typename Signature>
|
|
|
|
struct is_bind_expression<sprout::cbinder<Signature> >
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::true_type
|
2013-09-04 03:07:54 +00:00
|
|
|
{};
|
|
|
|
template<typename Result, typename Signature>
|
|
|
|
struct is_bind_expression<sprout::res_cbinder<Result, Signature> >
|
2013-11-22 12:11:08 +00:00
|
|
|
: public sprout::true_type
|
2013-09-04 03:07:54 +00:00
|
|
|
{};
|
2012-04-09 16:38:55 +00:00
|
|
|
|
|
|
|
namespace detail {
|
2013-07-10 09:06:19 +00:00
|
|
|
template<std::size_t N, typename BoundArg, typename = void>
|
|
|
|
struct complete_placeholder {
|
2013-07-07 14:05:18 +00:00
|
|
|
public:
|
|
|
|
typedef BoundArg type;
|
|
|
|
};
|
2013-07-10 09:06:19 +00:00
|
|
|
template<std::size_t N, typename BoundArg>
|
2013-07-07 14:05:18 +00:00
|
|
|
struct complete_placeholder<
|
2013-07-10 09:06:19 +00:00
|
|
|
N, BoundArg,
|
2013-07-10 03:15:11 +00:00
|
|
|
typename std::enable_if<sprout::is_positional_placeholder<BoundArg>::value>::type
|
2013-07-07 14:05:18 +00:00
|
|
|
> {
|
|
|
|
public:
|
2013-07-10 09:06:19 +00:00
|
|
|
typedef sprout::placeholder<N + 1> type;
|
2013-07-07 14:05:18 +00:00
|
|
|
};
|
|
|
|
|
2013-07-10 09:06:19 +00:00
|
|
|
template<std::size_t I, std::size_t N, typename Bounds, typename Binder, typename = void>
|
|
|
|
struct binder_complete_placeholders_impl {
|
2013-07-07 14:05:18 +00:00
|
|
|
public:
|
2013-07-10 09:06:19 +00:00
|
|
|
typedef Binder type;
|
2013-07-07 14:05:18 +00:00
|
|
|
};
|
2013-07-10 09:06:19 +00:00
|
|
|
template<std::size_t I, std::size_t N, typename Bounds, typename Func, typename... As>
|
|
|
|
struct binder_complete_placeholders_impl<
|
|
|
|
I, N, Bounds, sprout::binder<Func (As...)>,
|
|
|
|
typename std::enable_if<(I < sprout::tuples::tuple_size<Bounds>::value)>::type
|
|
|
|
>
|
|
|
|
: public std::conditional<
|
|
|
|
sprout::is_positional_placeholder<typename sprout::tuples::tuple_element<I, Bounds>::type>::value,
|
|
|
|
sprout::detail::binder_complete_placeholders_impl<
|
|
|
|
I + 1, N + 1, Bounds,
|
|
|
|
sprout::binder<Func (As..., sprout::placeholder<N + 1>)>
|
|
|
|
>,
|
|
|
|
sprout::detail::binder_complete_placeholders_impl<
|
|
|
|
I + 1, N, Bounds,
|
|
|
|
sprout::binder<Func (As..., typename sprout::tuples::tuple_element<I, Bounds>::type)>
|
|
|
|
>
|
|
|
|
>::type
|
|
|
|
{};
|
2013-07-15 07:23:43 +00:00
|
|
|
template<std::size_t I, std::size_t N, typename Bounds, typename Func, typename... As>
|
|
|
|
struct binder_complete_placeholders_impl<
|
|
|
|
I, N, Bounds, sprout::cbinder<Func (As...)>,
|
|
|
|
typename std::enable_if<(I < sprout::tuples::tuple_size<Bounds>::value)>::type
|
|
|
|
>
|
|
|
|
: public std::conditional<
|
|
|
|
sprout::is_positional_placeholder<typename sprout::tuples::tuple_element<I, Bounds>::type>::value,
|
|
|
|
sprout::detail::binder_complete_placeholders_impl<
|
|
|
|
I + 1, N + 1, Bounds,
|
|
|
|
sprout::cbinder<Func (As..., sprout::placeholder<N + 1>)>
|
|
|
|
>,
|
|
|
|
sprout::detail::binder_complete_placeholders_impl<
|
|
|
|
I + 1, N, Bounds,
|
|
|
|
sprout::cbinder<Func (As..., typename sprout::tuples::tuple_element<I, Bounds>::type)>
|
|
|
|
>
|
|
|
|
>::type
|
|
|
|
{};
|
|
|
|
template<bool Const, typename Func, typename... BoundArgs>
|
|
|
|
struct binder_complete_placeholders;
|
2013-07-07 14:05:18 +00:00
|
|
|
template<typename Func, typename... BoundArgs>
|
2013-07-15 07:23:43 +00:00
|
|
|
struct binder_complete_placeholders<
|
|
|
|
false, Func, BoundArgs...
|
|
|
|
>
|
2013-07-10 09:06:19 +00:00
|
|
|
: public sprout::detail::binder_complete_placeholders_impl<
|
|
|
|
0, 0, sprout::types::type_tuple<BoundArgs...>, sprout::binder<Func ()>
|
|
|
|
>
|
2013-07-07 14:05:18 +00:00
|
|
|
{};
|
2013-07-15 07:23:43 +00:00
|
|
|
template<typename Func, typename... BoundArgs>
|
|
|
|
struct binder_complete_placeholders<
|
|
|
|
true, Func, BoundArgs...
|
|
|
|
>
|
|
|
|
: public sprout::detail::binder_complete_placeholders_impl<
|
|
|
|
0, 0, sprout::types::type_tuple<BoundArgs...>, sprout::cbinder<Func ()>
|
|
|
|
>
|
|
|
|
{};
|
2013-07-07 14:05:18 +00:00
|
|
|
|
2013-07-10 09:06:19 +00:00
|
|
|
template<std::size_t I, std::size_t N, typename Bounds, typename Binder, typename = void>
|
|
|
|
struct res_binder_complete_placeholders_impl {
|
2013-07-07 14:05:18 +00:00
|
|
|
public:
|
2013-07-10 09:06:19 +00:00
|
|
|
typedef Binder type;
|
2013-07-07 14:05:18 +00:00
|
|
|
};
|
2013-07-10 09:06:19 +00:00
|
|
|
template<std::size_t I, std::size_t N, typename Bounds, typename Result, typename Func, typename... As>
|
|
|
|
struct res_binder_complete_placeholders_impl<
|
|
|
|
I, N, Bounds, sprout::res_binder<Result, Func (As...)>,
|
|
|
|
typename std::enable_if<(I < sprout::tuples::tuple_size<Bounds>::value)>::type
|
|
|
|
>
|
|
|
|
: public std::conditional<
|
|
|
|
sprout::is_positional_placeholder<typename sprout::tuples::tuple_element<I, Bounds>::type>::value,
|
|
|
|
sprout::detail::res_binder_complete_placeholders_impl<
|
|
|
|
I + 1, N + 1, Bounds,
|
|
|
|
sprout::res_binder<Result, Func (As..., sprout::placeholder<N + 1>)>
|
|
|
|
>,
|
|
|
|
sprout::detail::res_binder_complete_placeholders_impl<
|
|
|
|
I + 1, N, Bounds,
|
|
|
|
sprout::res_binder<Result, Func (As..., typename sprout::tuples::tuple_element<I, Bounds>::type)>
|
|
|
|
>
|
|
|
|
>::type
|
|
|
|
{};
|
2013-07-15 13:50:40 +00:00
|
|
|
template<std::size_t I, std::size_t N, typename Bounds, typename Result, typename Func, typename... As>
|
|
|
|
struct res_binder_complete_placeholders_impl<
|
|
|
|
I, N, Bounds, sprout::res_cbinder<Result, Func (As...)>,
|
|
|
|
typename std::enable_if<(I < sprout::tuples::tuple_size<Bounds>::value)>::type
|
|
|
|
>
|
|
|
|
: public std::conditional<
|
|
|
|
sprout::is_positional_placeholder<typename sprout::tuples::tuple_element<I, Bounds>::type>::value,
|
|
|
|
sprout::detail::res_binder_complete_placeholders_impl<
|
|
|
|
I + 1, N + 1, Bounds,
|
|
|
|
sprout::res_cbinder<Result, Func (As..., sprout::placeholder<N + 1>)>
|
|
|
|
>,
|
|
|
|
sprout::detail::res_binder_complete_placeholders_impl<
|
|
|
|
I + 1, N, Bounds,
|
|
|
|
sprout::res_cbinder<Result, Func (As..., typename sprout::tuples::tuple_element<I, Bounds>::type)>
|
|
|
|
>
|
|
|
|
>::type
|
|
|
|
{};
|
|
|
|
template<bool Const, typename Result, typename Func, typename... BoundArgs>
|
|
|
|
struct res_binder_complete_placeholders;
|
2013-07-07 14:05:18 +00:00
|
|
|
template<typename Result, typename Func, typename... BoundArgs>
|
2013-07-15 13:50:40 +00:00
|
|
|
struct res_binder_complete_placeholders<
|
|
|
|
false, Result, Func, BoundArgs...
|
|
|
|
>
|
2013-07-10 09:06:19 +00:00
|
|
|
: public sprout::detail::res_binder_complete_placeholders_impl<
|
|
|
|
0, 0, sprout::types::type_tuple<BoundArgs...>, sprout::res_binder<Result, Func ()>
|
|
|
|
>
|
2013-07-07 14:05:18 +00:00
|
|
|
{};
|
2013-07-15 13:50:40 +00:00
|
|
|
template<typename Result, typename Func, typename... BoundArgs>
|
|
|
|
struct res_binder_complete_placeholders<
|
|
|
|
true, Result, Func, BoundArgs...
|
|
|
|
>
|
|
|
|
: public sprout::detail::res_binder_complete_placeholders_impl<
|
|
|
|
0, 0, sprout::types::type_tuple<BoundArgs...>, sprout::res_cbinder<Result, Func ()>
|
|
|
|
>
|
|
|
|
{};
|
2013-07-07 14:05:18 +00:00
|
|
|
|
2013-07-15 07:23:43 +00:00
|
|
|
template<bool Const, typename Func, typename... BoundArgs>
|
2012-04-09 16:38:55 +00:00
|
|
|
struct bind_helper {
|
|
|
|
public:
|
|
|
|
typedef sprout::detail::maybe_wrap_member_pointer<typename std::decay<Func>::type> maybe_type;
|
|
|
|
typedef typename maybe_type::type func_type;
|
2013-07-15 07:23:43 +00:00
|
|
|
typedef typename sprout::detail::binder_complete_placeholders<Const, func_type, typename std::decay<BoundArgs>::type...>::type type;
|
2012-04-09 16:38:55 +00:00
|
|
|
};
|
2013-07-15 13:50:40 +00:00
|
|
|
template<bool Const, typename Result, typename Func, typename... BoundArgs>
|
2013-07-07 14:05:18 +00:00
|
|
|
struct res_bind_helper {
|
2012-04-09 16:38:55 +00:00
|
|
|
public:
|
|
|
|
typedef sprout::detail::maybe_wrap_member_pointer<typename std::decay<Func>::type> maybe_type;
|
|
|
|
typedef typename maybe_type::type functor_type;
|
2013-07-15 13:50:40 +00:00
|
|
|
typedef typename sprout::detail::res_binder_complete_placeholders<Const, Result, functor_type, typename std::decay<BoundArgs>::type...>::type type;
|
2012-04-09 16:38:55 +00:00
|
|
|
};
|
|
|
|
} // namespace detail
|
|
|
|
|
2013-07-07 14:05:18 +00:00
|
|
|
//
|
|
|
|
// bind_result
|
2013-07-15 07:23:43 +00:00
|
|
|
// cbind_result
|
2013-07-07 14:05:18 +00:00
|
|
|
//
|
|
|
|
template<typename F, typename... BoundArgs>
|
|
|
|
struct bind_result {
|
|
|
|
public:
|
2013-07-15 07:23:43 +00:00
|
|
|
typedef typename sprout::detail::bind_helper<false, F, BoundArgs...>::type type;
|
|
|
|
};
|
|
|
|
template<typename F, typename... BoundArgs>
|
|
|
|
struct cbind_result {
|
|
|
|
public:
|
|
|
|
typedef typename sprout::detail::bind_helper<true, F, BoundArgs...>::type type;
|
2013-07-07 14:05:18 +00:00
|
|
|
};
|
2013-07-15 07:23:43 +00:00
|
|
|
//
|
|
|
|
// res_bind_result
|
|
|
|
// res_cbind_result
|
|
|
|
//
|
2013-07-07 14:05:18 +00:00
|
|
|
template<typename R, typename F, typename... BoundArgs>
|
|
|
|
struct res_bind_result {
|
|
|
|
public:
|
2013-07-15 13:50:40 +00:00
|
|
|
typedef typename sprout::detail::res_bind_helper<false, R, F, BoundArgs...>::type type;
|
|
|
|
};
|
|
|
|
template<typename R, typename F, typename... BoundArgs>
|
|
|
|
struct res_cbind_result {
|
|
|
|
public:
|
|
|
|
typedef typename sprout::detail::res_bind_helper<true, R, F, BoundArgs...>::type type;
|
2013-07-07 14:05:18 +00:00
|
|
|
};
|
|
|
|
|
2012-04-09 16:38:55 +00:00
|
|
|
//
|
|
|
|
// bind
|
|
|
|
//
|
|
|
|
template<typename F, typename... BoundArgs>
|
2013-07-07 14:05:18 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::bind_result<F, BoundArgs...>::type
|
2012-04-09 16:38:55 +00:00
|
|
|
bind(F&& f, BoundArgs&&... args) {
|
2013-07-15 07:23:43 +00:00
|
|
|
typedef sprout::detail::bind_helper<false, F, BoundArgs...> helper_type;
|
2012-04-09 16:38:55 +00:00
|
|
|
typedef typename helper_type::maybe_type maybe_type;
|
|
|
|
typedef typename helper_type::type result_type;
|
2014-02-22 07:32:51 +00:00
|
|
|
return result_type(maybe_type::do_wrap(SPROUT_FORWARD(F, f)), SPROUT_FORWARD(BoundArgs, args)...);
|
2012-04-09 16:38:55 +00:00
|
|
|
}
|
|
|
|
template<typename R, typename F, typename... BoundArgs>
|
2013-07-07 14:05:18 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::res_bind_result<R, F, BoundArgs...>::type
|
2012-04-09 16:38:55 +00:00
|
|
|
bind(F&& f, BoundArgs&&... args) {
|
2013-07-15 13:50:40 +00:00
|
|
|
typedef sprout::detail::res_bind_helper<false, R, F, BoundArgs...> helper_type;
|
2012-04-09 16:38:55 +00:00
|
|
|
typedef typename helper_type::maybe_type maybe_type;
|
|
|
|
typedef typename helper_type::type result_type;
|
2014-02-22 07:32:51 +00:00
|
|
|
return result_type(maybe_type::do_wrap(SPROUT_FORWARD(F, f)), SPROUT_FORWARD(BoundArgs, args)...);
|
2012-04-09 16:38:55 +00:00
|
|
|
}
|
2012-08-11 12:53:12 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// cbind
|
|
|
|
//
|
|
|
|
template<typename F, typename... BoundArgs>
|
2013-07-15 07:23:43 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::cbind_result<F, BoundArgs...>::type
|
2012-08-11 12:53:12 +00:00
|
|
|
cbind(F&& f, BoundArgs&&... args) {
|
2013-07-15 07:23:43 +00:00
|
|
|
typedef sprout::detail::bind_helper<true, F, BoundArgs...> helper_type;
|
|
|
|
typedef typename helper_type::maybe_type maybe_type;
|
|
|
|
typedef typename helper_type::type result_type;
|
2014-02-22 07:32:51 +00:00
|
|
|
return result_type(maybe_type::do_wrap(SPROUT_FORWARD(F, f)), SPROUT_FORWARD(BoundArgs, args)...);
|
2012-08-11 12:53:12 +00:00
|
|
|
}
|
|
|
|
template<typename R, typename F, typename... BoundArgs>
|
2013-07-15 13:50:40 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::res_cbind_result<R, F, BoundArgs...>::type
|
2012-08-11 12:53:12 +00:00
|
|
|
cbind(F&& f, BoundArgs&&... args) {
|
2013-07-15 13:50:40 +00:00
|
|
|
typedef sprout::detail::res_bind_helper<true, R, F, BoundArgs...> helper_type;
|
|
|
|
typedef typename helper_type::maybe_type maybe_type;
|
|
|
|
typedef typename helper_type::type result_type;
|
2014-02-22 07:32:51 +00:00
|
|
|
return result_type(maybe_type::do_wrap(SPROUT_FORWARD(F, f)), SPROUT_FORWARD(BoundArgs, args)...);
|
2012-08-11 12:53:12 +00:00
|
|
|
}
|
2012-04-09 16:38:55 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_FUNCTIONAL_BIND_BIND_HPP
|