#ifndef SPROUT_COMPOST_EFFECTS_FUZZED_HPP #define SPROUT_COMPOST_EFFECTS_FUZZED_HPP #include #include #include #include #include namespace sprout { namespace compost { namespace effects { // // fuzz_holder // template class fuzz_holder { public: typedef T value_type; private: value_type gain_; value_type level_; public: fuzz_holder() = default; fuzz_holder(fuzz_holder const&) = default; SPROUT_CONSTEXPR fuzz_holder(value_type const& gain, value_type const& level) : gain_(gain), level_(level) {} SPROUT_CONSTEXPR value_type const& gain() const { return gain_; } SPROUT_CONSTEXPR value_type const& level() const { return level_; } }; // // fuzzed_forwarder // class fuzzed_forwarder { public: template SPROUT_CONSTEXPR sprout::compost::effects::fuzz_holder operator()(T const& gain, T const& level) const { return sprout::compost::effects::fuzz_holder(gain, level); } }; // // fuzzed // namespace { SPROUT_STATIC_CONSTEXPR sprout::compost::effects::fuzzed_forwarder fuzzed = {}; } // anonymous-namespace // // operator| // template inline SPROUT_CONSTEXPR auto operator|(Range&& lhs, sprout::compost::effects::fuzz_holder const& rhs) -> decltype( sprout::forward(lhs) | sprout::compost::effects::rectified | sprout::compost::effects::distorted(rhs.gain(), rhs.level()) ) { return sprout::forward(lhs) | sprout::compost::effects::rectified | sprout::compost::effects::distorted(rhs.gain(), rhs.level()) ; } } // namespace effects using sprout::compost::effects::fuzzed; } // namespace compost } // namespace sprout #endif // #ifndef SPROUT_COMPOST_EFFECTS_FUZZED_HPP