Sprout/sprout/compost/effects/vocal_cancelled.hpp

64 lines
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)
=============================================================================*/
2012-11-25 14:52:25 +00:00
#ifndef SPROUT_COMPOST_EFFECTS_VOCAL_CANCELLED_HPP
#define SPROUT_COMPOST_EFFECTS_VOCAL_CANCELLED_HPP
#include <sprout/config.hpp>
#include <sprout/utility/lvalue_forward.hpp>
#include <sprout/functional/minus.hpp>
#include <sprout/range/adaptor/transformed.hpp>
#include <sprout/compost/formats/left_channel.hpp>
#include <sprout/compost/formats/right_channel.hpp>
namespace sprout {
namespace compost {
namespace effects {
//
// vocal_cancelled_forwarder
//
class vocal_cancelled_forwarder {};
//
// vocal_cancelled
//
namespace {
2012-12-17 14:10:23 +00:00
SPROUT_STATIC_CONSTEXPR sprout::compost::effects::vocal_cancelled_forwarder vocal_cancelled = {};
2012-11-25 14:52:25 +00:00
} // anonymous-namespace
//
// operator|
//
2012-12-02 08:06:37 +00:00
// ???
#if !defined(__clang__)
2012-11-25 14:52:25 +00:00
template<typename Range>
inline SPROUT_CONSTEXPR auto
operator|(Range&& lhs, sprout::compost::effects::vocal_cancelled_forwarder const& rhs)
-> decltype(
sprout::lvalue_forward<Range>(lhs) | sprout::compost::formats::left_channel
| sprout::adaptors::transformed(
sprout::lvalue_forward<Range>(lhs) | sprout::compost::formats::right_channel,
sprout::minus<>()
)
)
{
return sprout::lvalue_forward<Range>(lhs) | sprout::compost::formats::left_channel
| sprout::adaptors::transformed(
sprout::lvalue_forward<Range>(lhs) | sprout::compost::formats::right_channel,
sprout::minus<>()
)
;
}
2012-12-02 08:06:37 +00:00
#endif
2012-11-25 14:52:25 +00:00
} // namespace effects
using sprout::compost::effects::vocal_cancelled;
} // namespace compost
} // namespace sprout
#endif // #ifndef SPROUT_COMPOST_EFFECTS_VOCAL_CANCELLED_HPP