mirror of
https://github.com/boostorg/hof.git
synced 2026-02-01 08:32:12 +00:00
97 lines
2.3 KiB
C++
97 lines
2.3 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2015 Paul Fultz II
|
|
rotate.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 FIT_GUARD_ROTATE_H
|
|
#define FIT_GUARD_ROTATE_H
|
|
|
|
/// rotate
|
|
/// ====
|
|
///
|
|
/// Description
|
|
/// -----------
|
|
///
|
|
/// The `rotate` function adaptor moves the first parameter to the last
|
|
/// parameter.
|
|
///
|
|
/// Synopsis
|
|
/// --------
|
|
///
|
|
/// template<class F>
|
|
/// rotate_adaptor<F> rotate(F f);
|
|
///
|
|
/// Semantics
|
|
/// ---------
|
|
///
|
|
/// assert(rotate(f)(x, xs...) == f(xs..., x));
|
|
///
|
|
/// Requirements
|
|
/// ------------
|
|
///
|
|
/// F must be:
|
|
///
|
|
/// * [Callable](concepts.md#callable)
|
|
/// * MoveConstructible
|
|
///
|
|
/// Example
|
|
/// -------
|
|
///
|
|
/// int r = fit::rotate(fit::_ - fit::_)(2, 5);
|
|
/// assert(r == 3);
|
|
///
|
|
|
|
#include <fit/detail/result_of.hpp>
|
|
#include <fit/reveal.hpp>
|
|
#include <fit/detail/make.hpp>
|
|
#include <fit/detail/static_const_var.hpp>
|
|
|
|
namespace fit {
|
|
|
|
template<class F>
|
|
struct rotate_adaptor : detail::callable_base<F>
|
|
{
|
|
typedef rotate_adaptor fit_rewritable1_tag;
|
|
FIT_INHERIT_CONSTRUCTOR(rotate_adaptor, detail::callable_base<F>);
|
|
|
|
template<class... Ts>
|
|
constexpr const detail::callable_base<F>& base_function(Ts&&... xs) const
|
|
{
|
|
return always_ref(*this)(xs...);
|
|
}
|
|
|
|
struct rotate_failure
|
|
{
|
|
template<class Failure>
|
|
struct apply
|
|
{
|
|
template<class T, class... Ts>
|
|
struct of
|
|
: Failure::template of<Ts..., T>
|
|
{};
|
|
};
|
|
};
|
|
|
|
struct failure
|
|
: failure_map<rotate_failure, detail::callable_base<F>>
|
|
{};
|
|
|
|
FIT_RETURNS_CLASS(rotate_adaptor);
|
|
|
|
template<class T, class... Ts>
|
|
constexpr FIT_SFINAE_RESULT(const detail::callable_base<F>&, id_<Ts>..., id_<T>)
|
|
operator()(T&& x, Ts&&... xs) const FIT_SFINAE_RETURNS
|
|
(
|
|
(FIT_MANGLE_CAST(const detail::callable_base<F>&)(FIT_CONST_THIS->base_function(xs...)))
|
|
(FIT_FORWARD(Ts)(xs)..., FIT_FORWARD(T)(x))
|
|
);
|
|
};
|
|
|
|
FIT_DECLARE_STATIC_VAR(rotate, detail::make<rotate_adaptor>);
|
|
|
|
} // namespace fit
|
|
|
|
#endif
|