mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
28 lines
815 B
C++
28 lines
815 B
C++
#ifndef SPROUT_RANGE_ALGORITHM_FIT_COPY_IF_HPP
|
|
#define SPROUT_RANGE_ALGORITHM_FIT_COPY_IF_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/container/traits.hpp>
|
|
#include <sprout/container/functions.hpp>
|
|
#include <sprout/algorithm/fit/result_of.hpp>
|
|
#include <sprout/algorithm/fit/copy_if.hpp>
|
|
|
|
namespace sprout {
|
|
namespace range {
|
|
namespace fit {
|
|
//
|
|
// copy_if
|
|
//
|
|
template<typename Input, typename Result>
|
|
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Result>::type copy_if(
|
|
Input const& input,
|
|
Result const& result
|
|
)
|
|
{
|
|
return sprout::fit::copy_if(sprout::begin(input), sprout::end(input), result);
|
|
}
|
|
} // namespace fit
|
|
} // namespace range
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIT_COPY_IF_HPP
|