mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
30 lines
1.4 KiB
C++
30 lines
1.4 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#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/adjacent_filtered.hpp>
|
|
#include <sprout/range/adaptor/uniqued.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
|