mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
26 lines
1.3 KiB
C++
26 lines
1.3 KiB
C++
|
#ifndef SPROUT_RANGE_ALGORITHM_OUTFIT_HPP
|
||
|
#define SPROUT_RANGE_ALGORITHM_OUTFIT_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/copy.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/copy_if.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/copy_backward.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/transform.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/replace_copy.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/replace_copy_if.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/remove_copy.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/remove_copy_if.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/unique_copy.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/reverse_copy.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/rotate_copy.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/partition_copy.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/stable_partition_copy.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/merge.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/set_union.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/set_intersection.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/set_difference.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/set_symmetric_difference.hpp>
|
||
|
#include <sprout/range/algorithm/outfit/swap_element_copy.hpp>
|
||
|
|
||
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_OUTFIT_HPP
|