algorithm, operation 全面修正

This commit is contained in:
bolero-MURAKAMI 2011-09-03 22:26:26 +09:00
parent 21f5d5191a
commit 5e67195030
244 changed files with 4764 additions and 831 deletions

View file

@ -1,11 +1,11 @@
#ifndef SPROUT_RANGE_ALGORITHM_TRANSFORM_HPP
#define SPROUT_RANGE_ALGORITHM_TRANSFORM_HPP
#ifndef SPROUT_RANGE_ALGORITHM_FIXED_TRANSFORM_HPP
#define SPROUT_RANGE_ALGORITHM_FIXED_TRANSFORM_HPP
#include <sprout/config.hpp>
#include <sprout/fixed_container/traits.hpp>
#include <sprout/fixed_container/functions.hpp>
#include <sprout/algorithm/fixed/result_of.hpp>
#include <sprout/algorithm/transform.hpp>
#include <sprout/sub_array.hpp>
namespace sprout {
namespace range {
@ -14,7 +14,7 @@ namespace sprout {
// transform
//
template<typename Input, typename Result, typename UnaryOperation>
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Result>::fixed_container_type transform(
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type transform(
Input const& input,
Result const& result,
UnaryOperation op
@ -27,7 +27,7 @@ namespace sprout {
// transform
//
template<typename Input1, typename Input2, typename Result, typename BinaryOperation>
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Result>::fixed_container_type transform(
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type transform(
Input1 const& input1,
Input2 const& input2,
Result const& result,
@ -37,6 +37,8 @@ namespace sprout {
return sprout::fixed::transform(sprout::begin(input1), sprout::end(input1), sprout::begin(input2), result, op);
}
} // namespace fixed
using sprout::range::fixed::transform;
} // namespace range
} // namespace sprout