fix reverse_iterator

support STL container: some algorithms
This commit is contained in:
bolero-MURAKAMI 2013-01-20 08:53:20 +09:00
parent a9cd556f8e
commit 9a593cbb81
30 changed files with 634 additions and 78 deletions

View file

@ -5,6 +5,7 @@
#include <sprout/container/traits.hpp>
#include <sprout/algorithm/fixed/result_of.hpp>
#include <sprout/algorithm/fixed/generate.hpp>
#include <sprout/pit.hpp>
namespace sprout {
namespace fixed {
@ -16,6 +17,12 @@ namespace sprout {
generate_n(Container const& cont, Size n, Generator const& gen) {
return sprout::fixed::detail::generate_impl(cont, gen, n);
}
template<typename Container, typename Size, typename Generator>
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
generate_n(Size n, Generator const& gen) {
return sprout::fixed::generate_n(sprout::pit<Container>(), n, gen);
}
} // namespace fixed
using sprout::fixed::generate_n;