1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

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

@ -0,0 +1,21 @@
#ifndef SPROUT_RANGE_ADAPTOR_MODIFYING_HPP
#define SPROUT_RANGE_ADAPTOR_MODIFYING_HPP
#include <sprout/config.hpp>
#include <sprout/range/adaptor/copied.hpp>
#include <sprout/range/adaptor/transformed.hpp>
#include <sprout/range/adaptor/replaced.hpp>
#include <sprout/range/adaptor/replaced_if.hpp>
#include <sprout/range/adaptor/filled.hpp>
#include <sprout/range/adaptor/filtered.hpp>
#include <sprout/range/adaptor/removed.hpp>
#include <sprout/range/adaptor/removed_if.hpp>
#include <sprout/range/adaptor/reversed.hpp>
#include <sprout/range/adaptor/merged.hpp>
#include <sprout/range/adaptor/set_union.hpp>
#include <sprout/range/adaptor/set_intersection.hpp>
#include <sprout/range/adaptor/set_difference.hpp>
#include <sprout/range/adaptor/set_symmetric_difference.hpp>
#include <sprout/range/adaptor/clamped.hpp>
#endif // #ifndef SPROUT_RANGE_ADAPTOR_MODIFYING_HPP