#ifndef SPROUT_COMPOST_FORMATS_LEFT_CHANNEL_HPP #define SPROUT_COMPOST_FORMATS_LEFT_CHANNEL_HPP #include #include #include namespace sprout { namespace compost { namespace formats { // // left_channel_forwarder // class left_channel_forwarder {}; // // left_channel // namespace { SPROUT_STATIC_CONSTEXPR sprout::compost::formats::left_channel_forwarder left_channel = {}; } // anonymous-namespace // // operator| // template inline SPROUT_CONSTEXPR auto operator|(Range&& lhs, left_channel_forwarder const& rhs) -> decltype( sprout::forward(lhs) | sprout::adaptors::steps(2) ) { return sprout::forward(lhs) | sprout::adaptors::steps(2) ; } } // namespace formats using sprout::compost::formats::left_channel; } // namespace compost } // namespace sprout #endif // #ifndef SPROUT_COMPOST_FORMATS_LEFT_CHANNEL_HPP