mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
21 lines
897 B
C++
21 lines
897 B
C++
#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
|