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

@ -5,6 +5,7 @@
#include <sprout/index_tuple.hpp>
#include <sprout/fixed_container/traits.hpp>
#include <sprout/fixed_container/functions.hpp>
#include <sprout/algorithm/fixed/result_of.hpp>
#include <sprout/algorithm/fixed/fill.hpp>
namespace sprout {
@ -13,7 +14,7 @@ namespace sprout {
// fill_n
//
template<typename Container, typename Size, typename T>
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::fixed_container_type fill_n(
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Container>::type fill_n(
Container const& cont,
Size n,
T const& value
@ -28,6 +29,8 @@ namespace sprout {
);
}
} // namespace fixed
using sprout::fixed::fill_n;
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_FIXED_FILL_N_HPP