mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
ffb3ccece8
fix is_bind_expression add polymorphic version not1, not2
72 lines
2.2 KiB
C++
72 lines
2.2 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
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)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_FUNCTIONAL_NOT1_HPP
|
|
#define SPROUT_FUNCTIONAL_NOT1_HPP
|
|
|
|
#include <functional>
|
|
#include <utility>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/functional/type_traits/is_strict_function.hpp>
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
namespace sprout {
|
|
namespace detail {
|
|
template<typename Predicate, bool IsStrict = sprout::is_strict_unary_function<Predicate>::value>
|
|
class unary_negate_impl;
|
|
|
|
template<typename Predicate>
|
|
class unary_negate_impl<Predicate, true> {
|
|
public:
|
|
typedef typename Predicate::argument_type argument_type;
|
|
typedef bool result_type;
|
|
protected:
|
|
Predicate fn;
|
|
public:
|
|
explicit SPROUT_CONSTEXPR unary_negate_impl(Predicate const& pred)
|
|
: fn(pred)
|
|
{}
|
|
SPROUT_CONSTEXPR bool operator()(typename Predicate::argument_type const& x) const {
|
|
return !fn(x);
|
|
}
|
|
};
|
|
|
|
template<typename Predicate>
|
|
class unary_negate_impl<Predicate, false> {
|
|
protected:
|
|
Predicate fn;
|
|
public:
|
|
explicit SPROUT_CONSTEXPR unary_negate_impl(Predicate const& pred)
|
|
: fn(pred)
|
|
{}
|
|
template<typename T>
|
|
SPROUT_CONSTEXPR decltype(!std::declval<Predicate const&>()(std::declval<T>()))
|
|
operator()(T&& x) const {
|
|
return !fn(sprout::forward<T>(x));
|
|
}
|
|
};
|
|
} // namespace detail
|
|
|
|
// 20.8.8 negators
|
|
template<typename Predicate>
|
|
class unary_negate
|
|
: public sprout::detail::unary_negate_impl<Predicate>
|
|
{
|
|
public:
|
|
explicit SPROUT_CONSTEXPR unary_negate(Predicate const& pred)
|
|
: sprout::detail::unary_negate_impl<Predicate>(pred)
|
|
{}
|
|
};
|
|
|
|
template<typename Predicate>
|
|
inline SPROUT_CONSTEXPR sprout::unary_negate<Predicate>
|
|
not1(Predicate const& pred) {
|
|
return sprout::unary_negate<Predicate>(pred);
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_FUNCTIONAL_NOT1_HPP
|