2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2011-09-03 13:26:26 +00:00
|
|
|
#ifndef SPROUT_RANGE_ALGORITHM_FIT_HPP
|
|
|
|
#define SPROUT_RANGE_ALGORITHM_FIT_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/copy.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/copy_if.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/copy_backward.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/transform.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/replace_copy.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/replace_copy_if.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/remove_copy.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/remove_copy_if.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/unique_copy.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/reverse_copy.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/rotate_copy.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/partition_copy.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/stable_partition_copy.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/merge.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/set_union.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/set_intersection.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/set_difference.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/set_symmetric_difference.hpp>
|
2012-10-13 13:11:32 +00:00
|
|
|
#include <sprout/range/algorithm/fit/copy_while.hpp>
|
|
|
|
#include <sprout/range/algorithm/fit/copy_until.hpp>
|
2012-10-13 12:06:32 +00:00
|
|
|
#include <sprout/range/algorithm/fit/clamp_range_copy.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/range/algorithm/fit/swap_element_copy.hpp>
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIT_HPP
|