Sprout/sprout/weed/attr_cnv/results/negate.hpp

42 lines
1.2 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2014-01-08 07:48:12 +00:00
Copyright (c) 2011-2014 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
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)
=============================================================================*/
2014-05-29 16:22:00 +00:00
#ifndef SPROUT_WEED_ATTR_CNV_RESULTS_NEGATE_HPP
#define SPROUT_WEED_ATTR_CNV_RESULTS_NEGATE_HPP
#include <type_traits>
#include <sprout/config.hpp>
2013-03-25 03:43:47 +00:00
#include <sprout/type_traits/identity.hpp>
#include <sprout/weed/unused.hpp>
#include <sprout/weed/traits/type/is_unused.hpp>
namespace sprout {
namespace weed {
namespace attr_cnv {
namespace results {
//
// negate
//
template<typename T, typename = void>
struct negate;
// -unused -> unused
template<typename T>
struct negate<
T,
typename std::enable_if<
sprout::weed::traits::is_unused<T>::value
>::type
2013-03-25 03:43:47 +00:00
>
: public sprout::identity<sprout::weed::unused>
{};
} // namespace results
} // namespace attr_cnv
} // namespace weed
} // namespace sprout
2014-05-29 16:22:00 +00:00
#endif // #ifndef SPROUT_WEED_ATTR_CNV_RESULTS_NEGATE_HPP