Edit: /usr/include/boost/hof/pipable.hpp (6227B)
/*=============================================================================
Copyright (c) 2012 Paul Fultz II
pipable.h
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)
==============================================================================*/
#ifndef BOOST_HOF_GUARD_FUNCTION_PIPABLE_H
#define BOOST_HOF_GUARD_FUNCTION_PIPABLE_H
/// pipable
/// =======
///
/// Description
/// -----------
///
/// The `pipable` function adaptor provides an extension method. The first
/// parameter of the function can be piped into the function using the pipe
/// `|` operator. This can be especially convenient when there are a lot of
/// nested function calls. Functions that are made pipable can still be called
/// the traditional way without piping in the first parameter.
///
/// Synopsis
/// --------
///
/// template
/// constexpr pipable_adaptor pipable(F f);
///
/// Semantics
/// ---------
///
/// assert(x | pipable(f)(ys...) == f(x, ys...));
///
/// Requirements
/// ------------
///
/// F must be:
///
/// * [ConstInvocable](ConstInvocable)
/// * MoveConstructible
///
/// Example
/// -------
///
/// #include
/// #include
/// using namespace boost::hof;
///
/// struct sum
/// {
/// template
/// T operator()(T x, U y) const
/// {
/// return x+y;
/// }
/// };
///
/// int main() {
/// assert(3 == (1 | pipable(sum())(2)));
/// assert(3 == pipable(sum())(1, 2));
/// }
///
/// References
/// ----------
///
/// * [Extension methods]()
///
#include
#include
#include
#include
#include
#include
#include
namespace boost { namespace hof {
template
struct pipable_adaptor;
namespace detail {
template
struct pipe_closure : F, Pack
{
template
constexpr pipe_closure(X&& fp, P&& packp)
BOOST_HOF_NOEXCEPT(BOOST_HOF_IS_NOTHROW_CONSTRUCTIBLE(F, X&&) && BOOST_HOF_IS_NOTHROW_CONSTRUCTIBLE(Pack, P&&))
: F(BOOST_HOF_FORWARD(X)(fp)), Pack(BOOST_HOF_FORWARD(P)(packp))
{}
template
constexpr const F& base_function(Ts&&...) const noexcept
{
return *this;
}
template
constexpr const Pack& get_pack(Ts&&...) const noexcept
{
return *this;
}
template
struct invoke
{
A a;
const pipe_closure * self;
template
constexpr invoke(X&& xp, const pipe_closure * selfp)
BOOST_HOF_NOEXCEPT(BOOST_HOF_IS_NOTHROW_CONSTRUCTIBLE(A, X&&))
: a(BOOST_HOF_FORWARD(X)(xp)), self(selfp)
{}
BOOST_HOF_RETURNS_CLASS(invoke);
template
constexpr BOOST_HOF_SFINAE_RESULT(const F&, id_, id_...)
operator()(Ts&&... xs) const BOOST_HOF_SFINAE_RETURNS
(BOOST_HOF_RETURNS_STATIC_CAST(const F&)(*BOOST_HOF_CONST_THIS->self)(BOOST_HOF_FORWARD(A)(a), BOOST_HOF_FORWARD(Ts)(xs)...));
};
BOOST_HOF_RETURNS_CLASS(pipe_closure);
template
constexpr BOOST_HOF_SFINAE_RESULT(const Pack&, id_>)
operator()(A&& a) const BOOST_HOF_SFINAE_RETURNS
(BOOST_HOF_MANGLE_CAST(const Pack&)(BOOST_HOF_CONST_THIS->get_pack(a))(invoke(BOOST_HOF_FORWARD(A)(a), BOOST_HOF_CONST_THIS)));
};
template
constexpr auto make_pipe_closure(F f, Pack&& p) BOOST_HOF_RETURNS
(
pipe_closure::type>(BOOST_HOF_RETURNS_STATIC_CAST(F&&)(f), BOOST_HOF_FORWARD(Pack)(p))
);
template
struct pipe_pack
{
template
constexpr const F& get_function(Ts&&...) const noexcept
{
return static_cast(static_cast(*this));
}
BOOST_HOF_RETURNS_CLASS(pipe_pack);
template::value)
>::type>
constexpr auto operator()(Ts&&... xs) const BOOST_HOF_RETURNS
(make_pipe_closure(BOOST_HOF_RETURNS_C_CAST(F&&)(BOOST_HOF_CONST_THIS->get_function(xs...)), boost::hof::pack_forward(BOOST_HOF_FORWARD(Ts)(xs)...)));
};
template
constexpr auto operator|(A&& a, const pipe_closure& p) BOOST_HOF_RETURNS
(p(BOOST_HOF_FORWARD(A)(a)));
}
template
struct pipable_adaptor
: detail::basic_first_of_adaptor, detail::pipe_pack, detail::callable_base> >
{
typedef detail::basic_first_of_adaptor, detail::pipe_pack, detail::callable_base> > base;
typedef pipable_adaptor fit_rewritable_tag;
BOOST_HOF_INHERIT_CONSTRUCTOR(pipable_adaptor, base);
constexpr const detail::callable_base& base_function() const noexcept
{
return *this;
}
};
template
constexpr auto operator|(A&& a, const pipable_adaptor& p) BOOST_HOF_RETURNS
(p(BOOST_HOF_FORWARD(A)(a)));
BOOST_HOF_DECLARE_STATIC_VAR(pipable, detail::make);
namespace detail {
template
struct static_function_wrapper;
// Operators for static_function_wrapper adaptor
template
auto operator|(A&& a, const boost::hof::detail::static_function_wrapper& f) BOOST_HOF_RETURNS
(f(BOOST_HOF_FORWARD(A)(a)));
template
struct static_default_function;
// Operators for static_default_function adaptor
template
auto operator|(A&& a, const boost::hof::detail::static_default_function& f) BOOST_HOF_RETURNS
(f(BOOST_HOF_FORWARD(A)(a)));
}
template
struct static_;
// Operators for static_ adaptor
template
auto operator|(A&& a, static_ f) BOOST_HOF_RETURNS
(f.base_function().base_function()(BOOST_HOF_FORWARD(A)(a)));
}} // namespace boost::hof
#endif