2
0
mirror of https://github.com/boostorg/hof.git synced 2026-02-01 08:32:12 +00:00
Files
hof/fit/repeat_while.h
2015-08-24 18:24:50 -05:00

166 lines
4.5 KiB
C++

/*=============================================================================
Copyright (c) 2015 Paul Fultz II
repeat_while.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_REPEAT_WHILE_H
#define FIT_GUARD_REPEAT_WHILE_H
/// repeat_while
/// ======
///
/// Description
/// -----------
///
/// The `repeat_while` function adaptor will repeatedly apply a function while
/// the predicate returns an integral constant that is true. As such, the
/// predicate must be depedently-typed since it is never called at runtime.
///
///
/// Synopsis
/// --------
///
/// template<class F, class Predicate>
/// constexpr repeat_while_adaptor<F, Predicate> repeat_while(F f, Predicate predicate);
///
/// Requirements
/// ------------
///
/// F must be:
///
/// FunctionObject
/// MoveConstructible
///
/// Predicate must be:
///
/// FunctionObject
/// MoveConstructible
///
/// Example
/// -------
///
/// struct increment
/// {
/// template<class T>
/// constexpr std::integral_constant<int, T::value + 1> operator()(T) const
/// {
/// return std::integral_constant<int, T::value + 1>();
/// }
/// };
///
/// struct not_6
/// {
/// template<class T>
/// constexpr std::integral_constant<bool, (T::value != 6)>
/// operator()(T) const
/// {
/// return std::integral_constant<bool, (T::value != 6)>();
/// }
/// };
///
/// typedef std::integral_constant<int, 1> one;
/// typedef std::integral_constant<int, 6> six;
///
/// typedef decltype(fit::repeat_while(increment(), not_6())(std::integral_constant<int, 1>())) increment_until_6;
///
///
/// constexpr auto increment_until_6 = fit::repeat_while(increment(), not_6());
/// static_assert(std::is_same<six, decltype(increment_until_6(one()))>::value, "Error");
///
#include <fit/always.h>
#include <fit/detail/delegate.h>
#include <fit/detail/result_of.h>
#include <fit/detail/move.h>
#include <fit/detail/make.h>
#include <fit/detail/sfinae.h>
#include <fit/detail/static_const_var.h>
namespace fit { namespace detail {
template<class P, class... Ts>
struct compute_predicate
{
typedef decltype(std::declval<P>()(std::declval<Ts>()...)) type;
};
template<bool B>
struct while_repeater
{
template<class F, class P, class... Ts>
constexpr FIT_SFINAE_RESULT(while_repeater<
compute_predicate<P, typename result_of<const F&, id_<Ts>...>::type>::type::value
>, id_<const F&>, id_<const P&>, result_of<const F&, id_<Ts>...>)
operator()(const F& f, const P& p, Ts&&... xs) const FIT_SFINAE_RETURNS
(
while_repeater<
compute_predicate<P, decltype(f(fit::forward<Ts>(xs)...))>::type::value
>()(f, p, f(fit::forward<Ts>(xs)...))
);
};
template<>
struct while_repeater<false>
{
template<class F, class P, class T>
constexpr T operator()(const F&, const P&, T&& x) const
{
return x;
}
};
}
template<class F, class P>
struct repeat_while_adaptor : F, P
{
FIT_INHERIT_CONSTRUCTOR(repeat_while_adaptor, F)
template<class X, class Y,
FIT_ENABLE_IF_CONVERTIBLE(X, F),
FIT_ENABLE_IF_CONVERTIBLE(Y, P)
>
constexpr repeat_while_adaptor(X&& x, Y&& y)
: F(fit::forward<X>(x)), P(fit::forward<Y>(y))
{}
template<class... Ts>
constexpr const F& base_function(Ts&&... xs) const
{
return always_ref(*this)(xs...);
}
template<class... Ts>
constexpr const P& base_predicate(Ts&&... xs) const
{
return always_ref(*this)(xs...);
}
FIT_RETURNS_CLASS(repeat_while_adaptor);
template<class... Ts>
constexpr FIT_SFINAE_RESULT(
detail::while_repeater<
detail::compute_predicate<P, typename result_of<const F&, id_<Ts>...>::type>::type::value
>,
id_<const F&>, id_<const P&>, id_<Ts>...)
operator()(Ts&&... xs) const FIT_SFINAE_RETURNS
(
detail::while_repeater<
detail::compute_predicate<P, decltype(std::declval<F>()(fit::forward<Ts>(xs)...))>::type::value
>()
(
FIT_MANGLE_CAST(const F&)(FIT_CONST_THIS->base_function(xs...)),
FIT_MANGLE_CAST(const P&)(FIT_CONST_THIS->base_predicate(xs...)),
fit::forward<Ts>(xs)...
)
);
};
FIT_DECLARE_STATIC_VAR(repeat_while, detail::make<repeat_while_adaptor>);
}
#endif