mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
add new directory sprout/algorithm/cxx14/
This commit is contained in:
parent
39d60a514f
commit
040278bd11
76 changed files with 1165 additions and 761 deletions
45
sprout/algorithm/cxx14.hpp
Normal file
45
sprout/algorithm/cxx14.hpp
Normal file
|
@ -0,0 +1,45 @@
|
|||
/*=============================================================================
|
||||
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_ALGORITHM_CXX14_HPP
|
||||
#define SPROUT_ALGORITHM_CXX14_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/algorithm/cxx14/copy.hpp>
|
||||
#include <sprout/algorithm/cxx14/copy_n.hpp>
|
||||
#include <sprout/algorithm/cxx14/copy_if.hpp>
|
||||
#include <sprout/algorithm/cxx14/copy_backward.hpp>
|
||||
#include <sprout/algorithm/cxx14/move.hpp>
|
||||
#include <sprout/algorithm/cxx14/move_backward.hpp>
|
||||
#include <sprout/algorithm/cxx14/swap_ranges.hpp>
|
||||
#include <sprout/algorithm/cxx14/iter_swap.hpp>
|
||||
#include <sprout/algorithm/cxx14/transform.hpp>
|
||||
#include <sprout/algorithm/cxx14/replace.hpp>
|
||||
#include <sprout/algorithm/cxx14/replace_if.hpp>
|
||||
#include <sprout/algorithm/cxx14/replace_copy.hpp>
|
||||
#include <sprout/algorithm/cxx14/replace_copy_if.hpp>
|
||||
#include <sprout/algorithm/cxx14/fill.hpp>
|
||||
#include <sprout/algorithm/cxx14/fill_n.hpp>
|
||||
#include <sprout/algorithm/cxx14/generate.hpp>
|
||||
#include <sprout/algorithm/cxx14/generate_n.hpp>
|
||||
#include <sprout/algorithm/cxx14/remove.hpp>
|
||||
#include <sprout/algorithm/cxx14/remove_if.hpp>
|
||||
#include <sprout/algorithm/cxx14/remove_copy.hpp>
|
||||
#include <sprout/algorithm/cxx14/remove_copy_if.hpp>
|
||||
#include <sprout/algorithm/cxx14/unique.hpp>
|
||||
#include <sprout/algorithm/cxx14/unique_copy.hpp>
|
||||
#include <sprout/algorithm/cxx14/reverse.hpp>
|
||||
#include <sprout/algorithm/cxx14/reverse_copy.hpp>
|
||||
#include <sprout/algorithm/cxx14/rotate.hpp>
|
||||
#include <sprout/algorithm/cxx14/rotate_copy.hpp>
|
||||
#include <sprout/algorithm/cxx14/random_shuffle.hpp>
|
||||
#include <sprout/algorithm/cxx14/shuffle.hpp>
|
||||
#include <sprout/algorithm/cxx14/partition.hpp>
|
||||
#include <sprout/algorithm/cxx14/stable_partition.hpp>
|
||||
#include <sprout/algorithm/cxx14/partition_copy.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_CXX14_HPP
|
Loading…
Add table
Add a link
Reference in a new issue