2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2015-01-10 10:13:57 +00:00
|
|
|
Copyright (c) 2011-2015 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-24 14:28:07 +00:00
|
|
|
#ifndef SPROUT_COMPOST_FORMATS_LEFT_CHANNEL_HPP
|
|
|
|
#define SPROUT_COMPOST_FORMATS_LEFT_CHANNEL_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
#include <sprout/range/adaptor/steps.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace compost {
|
|
|
|
namespace formats {
|
|
|
|
//
|
|
|
|
// left_channel_forwarder
|
|
|
|
//
|
|
|
|
class left_channel_forwarder {};
|
|
|
|
|
|
|
|
//
|
|
|
|
// left_channel
|
|
|
|
//
|
|
|
|
namespace {
|
2012-12-17 14:10:23 +00:00
|
|
|
SPROUT_STATIC_CONSTEXPR sprout::compost::formats::left_channel_forwarder left_channel = {};
|
2012-11-24 14:28:07 +00:00
|
|
|
} // anonymous-namespace
|
|
|
|
|
|
|
|
//
|
|
|
|
// operator|
|
|
|
|
//
|
|
|
|
template<typename Range, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR auto
|
2013-07-22 13:00:09 +00:00
|
|
|
operator|(Range&& lhs, left_channel_forwarder const&)
|
2012-11-24 14:28:07 +00:00
|
|
|
-> decltype(
|
2014-02-22 07:32:51 +00:00
|
|
|
SPROUT_FORWARD(Range, lhs)
|
2012-11-24 14:28:07 +00:00
|
|
|
| sprout::adaptors::steps(2)
|
|
|
|
)
|
|
|
|
{
|
2014-02-22 07:32:51 +00:00
|
|
|
return SPROUT_FORWARD(Range, lhs)
|
2012-11-24 14:28:07 +00:00
|
|
|
| sprout::adaptors::steps(2)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
} // namespace formats
|
|
|
|
|
|
|
|
using sprout::compost::formats::left_channel;
|
|
|
|
} // namespace compost
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_COMPOST_FORMATS_LEFT_CHANNEL_HPP
|