add range adaptor: merged, set operations

This commit is contained in:
bolero-MURAKAMI 2013-01-26 23:51:43 +09:00
parent 3472e8b94e
commit 9aa2a7c9b2
43 changed files with 1176 additions and 62 deletions

View file

@ -15,7 +15,7 @@ namespace sprout {
private:
T value_;
public:
SPROUT_CONSTEXPR remove_filter(T const& value)
explicit SPROUT_CONSTEXPR remove_filter(T const& value)
: value_(value)
{}
template<typename U>