mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
bf0c7021cf
support C++14 type_traits
39 lines
1.6 KiB
C++
39 lines
1.6 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_REMOVE_COPY_HPP
|
|
#define SPROUT_RANGE_ALGORITHM_FIXED_REMOVE_COPY_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/container/functions.hpp>
|
|
#include <sprout/algorithm/fixed/results.hpp>
|
|
#include <sprout/algorithm/fixed/remove_copy.hpp>
|
|
|
|
namespace sprout {
|
|
namespace range {
|
|
namespace fixed {
|
|
//
|
|
// remove_copy
|
|
//
|
|
template<typename InputRange, typename Result, typename T>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
|
|
remove_copy(InputRange const& rng, Result const& result, T const& value) {
|
|
return sprout::fixed::remove_copy(sprout::begin(rng), sprout::end(rng), result, value);
|
|
}
|
|
|
|
template<typename Result, typename InputRange, typename T>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
|
|
remove_copy(InputRange const& rng, T const& value) {
|
|
return sprout::fixed::remove_copy<Result>(sprout::begin(rng), sprout::end(rng), value);
|
|
}
|
|
} // namespace fixed
|
|
|
|
using sprout::range::fixed::remove_copy;
|
|
} // namespace range
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_REMOVE_COPY_HPP
|