2011-09-03 13:26:26 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIT_FILL_N_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIT_FILL_N_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fixed/fill_n.hpp>
|
|
|
|
#include <sprout/algorithm/fit/result_of.hpp>
|
|
|
|
#include <sprout/sub_array.hpp>
|
|
|
|
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT_DETAIL
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fit {
|
|
|
|
namespace detail {
|
|
|
|
template<typename Container, typename Size, typename T>
|
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Container>::type fill_n_impl(
|
|
|
|
Container const& cont,
|
|
|
|
Size n,
|
|
|
|
T const& value,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Container>::difference_type offset
|
2011-09-03 13:26:26 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::sub_copy(
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::get_internal(sprout::fixed::fill_n(cont, n, value)),
|
2011-09-03 13:26:26 +00:00
|
|
|
offset,
|
|
|
|
offset + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::min(n, sprout::size(cont))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// fill_n
|
|
|
|
//
|
|
|
|
template<typename Container, typename Size, typename T>
|
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Container>::type fill_n(
|
|
|
|
Container const& cont,
|
|
|
|
Size n,
|
|
|
|
T const& value
|
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::fit::detail::fill_n_impl(cont, n, value, sprout::internal_begin_offset(cont));
|
2011-09-03 13:26:26 +00:00
|
|
|
}
|
|
|
|
} // namespace fit
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIT_FILL_N_HPP
|