/*============================================================================= Copyright (c) 2015 Paul Fultz II flip.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_FLIP_H #define BOOST_HOF_GUARD_FLIP_H /// flip /// ==== /// /// Description /// ----------- /// /// The `flip` function adaptor swaps the first two parameters. /// /// Synopsis /// -------- /// /// template /// flip_adaptor flip(F f); /// /// Semantics /// --------- /// /// assert(flip(f)(x, y, xs...) == f(y, x, xs...)); /// /// Requirements /// ------------ /// /// F must be at least: /// /// * [BinaryInvocable](BinaryInvocable) /// /// Or: /// /// * [Invocable](Invocable) with more than two argurments /// /// And: /// /// * MoveConstructible /// /// Example /// ------- /// /// #include /// #include /// /// int main() { /// int r = boost::hof::flip(boost::hof::_ - boost::hof::_)(2, 5); /// assert(r == 3); /// } /// #include #include #include #include namespace boost { namespace hof { template struct flip_adaptor : detail::callable_base { typedef flip_adaptor fit_rewritable1_tag; BOOST_HOF_INHERIT_CONSTRUCTOR(flip_adaptor, detail::callable_base); template constexpr const detail::callable_base& base_function(Ts&&... xs) const { return boost::hof::always_ref(*this)(xs...); } struct flip_failure { template struct apply { template struct of : Failure::template of {}; }; }; struct failure : failure_map> {}; BOOST_HOF_RETURNS_CLASS(flip_adaptor); template constexpr BOOST_HOF_SFINAE_RESULT(const detail::callable_base&, id_, id_, id_...) operator()(T&& x, U&& y, Ts&&... xs) const BOOST_HOF_SFINAE_RETURNS ( (BOOST_HOF_MANGLE_CAST(const detail::callable_base&)(BOOST_HOF_CONST_THIS->base_function(xs...))) (BOOST_HOF_FORWARD(U)(y), BOOST_HOF_FORWARD(T)(x), BOOST_HOF_FORWARD(Ts)(xs)...) ); }; BOOST_HOF_DECLARE_STATIC_VAR(flip, detail::make); }} // namespace boost::hof #endif