Sprout/sprout/algorithm/fit.hpp

52 lines
2.3 KiB
C++
Raw Normal View History

2011-09-03 13:26:26 +00:00
#ifndef SPROUT_ALGORITHM_FIT_HPP
#define SPROUT_ALGORITHM_FIT_HPP
#include <sprout/config.hpp>
#include <sprout/algorithm/fit/copy.hpp>
#include <sprout/algorithm/fit/copy_n.hpp>
#include <sprout/algorithm/fit/copy_if.hpp>
#include <sprout/algorithm/fit/copy_backward.hpp>
#include <sprout/algorithm/fit/transform.hpp>
#include <sprout/algorithm/fit/replace.hpp>
#include <sprout/algorithm/fit/replace_if.hpp>
#include <sprout/algorithm/fit/replace_copy.hpp>
#include <sprout/algorithm/fit/replace_copy_if.hpp>
#include <sprout/algorithm/fit/fill.hpp>
#include <sprout/algorithm/fit/fill_n.hpp>
#include <sprout/algorithm/fit/generate.hpp>
#include <sprout/algorithm/fit/generate_n.hpp>
#include <sprout/algorithm/fit/remove.hpp>
#include <sprout/algorithm/fit/remove_if.hpp>
#include <sprout/algorithm/fit/remove_copy.hpp>
#include <sprout/algorithm/fit/remove_copy_if.hpp>
#include <sprout/algorithm/fit/unique.hpp>
#include <sprout/algorithm/fit/unique_copy.hpp>
#include <sprout/algorithm/fit/reverse.hpp>
#include <sprout/algorithm/fit/reverse_copy.hpp>
#include <sprout/algorithm/fit/rotate.hpp>
#include <sprout/algorithm/fit/rotate_copy.hpp>
#include <sprout/algorithm/fit/shuffle.hpp>
2011-09-03 13:26:26 +00:00
#include <sprout/algorithm/fit/partition.hpp>
#include <sprout/algorithm/fit/partition_copy.hpp>
#include <sprout/algorithm/fit/stable_partition.hpp>
#include <sprout/algorithm/fit/stable_partition_copy.hpp>
#include <sprout/algorithm/fit/sort.hpp>
#include <sprout/algorithm/fit/stable_sort.hpp>
#include <sprout/algorithm/fit/partial_sort.hpp>
#include <sprout/algorithm/fit/nth_element.hpp>
#include <sprout/algorithm/fit/merge.hpp>
#include <sprout/algorithm/fit/inplace_merge.hpp>
#include <sprout/algorithm/fit/set_union.hpp>
#include <sprout/algorithm/fit/set_intersection.hpp>
#include <sprout/algorithm/fit/set_difference.hpp>
#include <sprout/algorithm/fit/set_symmetric_difference.hpp>
#include <sprout/algorithm/fit/push_heap.hpp>
#include <sprout/algorithm/fit/pop_heap.hpp>
#include <sprout/algorithm/fit/make_heap.hpp>
#include <sprout/algorithm/fit/make_partial_heap.hpp>
#include <sprout/algorithm/fit/sort_heap.hpp>
#include <sprout/algorithm/fit/swap_element.hpp>
#include <sprout/algorithm/fit/swap_element_copy.hpp>
#endif // #ifndef SPROUT_ALGORITHM_FIT_HPP