mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
35 lines
1.8 KiB
C++
35 lines
1.8 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_ALGORITHM_FIXED_HPP
|
|
#define SPROUT_RANGE_ALGORITHM_FIXED_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/range/algorithm/fixed/copy.hpp>
|
|
#include <sprout/range/algorithm/fixed/copy_if.hpp>
|
|
#include <sprout/range/algorithm/fixed/copy_backward.hpp>
|
|
#include <sprout/range/algorithm/fixed/transform.hpp>
|
|
#include <sprout/range/algorithm/fixed/replace_copy.hpp>
|
|
#include <sprout/range/algorithm/fixed/replace_copy_if.hpp>
|
|
#include <sprout/range/algorithm/fixed/remove_copy.hpp>
|
|
#include <sprout/range/algorithm/fixed/remove_copy_if.hpp>
|
|
#include <sprout/range/algorithm/fixed/unique_copy.hpp>
|
|
#include <sprout/range/algorithm/fixed/reverse_copy.hpp>
|
|
#include <sprout/range/algorithm/fixed/rotate_copy.hpp>
|
|
#include <sprout/range/algorithm/fixed/partition_copy.hpp>
|
|
#include <sprout/range/algorithm/fixed/stable_partition_copy.hpp>
|
|
#include <sprout/range/algorithm/fixed/merge.hpp>
|
|
#include <sprout/range/algorithm/fixed/set_union.hpp>
|
|
#include <sprout/range/algorithm/fixed/set_intersection.hpp>
|
|
#include <sprout/range/algorithm/fixed/set_difference.hpp>
|
|
#include <sprout/range/algorithm/fixed/set_symmetric_difference.hpp>
|
|
#include <sprout/range/algorithm/fixed/copy_while.hpp>
|
|
#include <sprout/range/algorithm/fixed/copy_until.hpp>
|
|
#include <sprout/range/algorithm/fixed/clamp_range_copy.hpp>
|
|
#include <sprout/range/algorithm/fixed/swap_element_copy.hpp>
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_HPP
|