mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix support for STL container: some algorithms
This commit is contained in:
parent
ace6acad69
commit
a9cd556f8e
28 changed files with 911 additions and 106 deletions
|
@ -10,18 +10,41 @@
|
|||
|
||||
namespace sprout {
|
||||
namespace fixed {
|
||||
namespace detail {
|
||||
template<typename Container, typename Size, typename T>
|
||||
inline SPROUT_CONSTEXPR typename std::enable_if<
|
||||
sprout::is_fixed_container<Container>::value,
|
||||
typename sprout::fixed::result_of::algorithm<Container>::type
|
||||
>::type
|
||||
fill_n(Container const& cont, Size n, T const& value) {
|
||||
return sprout::fixed::detail::fill_impl(
|
||||
cont, value,
|
||||
sprout::index_range<0, sprout::container_traits<Container>::static_size>::make(),
|
||||
sprout::internal_begin_offset(cont),
|
||||
n
|
||||
);
|
||||
}
|
||||
|
||||
template<typename Container, typename Size, typename T>
|
||||
inline SPROUT_CONSTEXPR typename std::enable_if<
|
||||
!sprout::is_fixed_container<Container>::value,
|
||||
typename sprout::fixed::result_of::algorithm<Container>::type
|
||||
>::type
|
||||
fill_n(Container const& cont, Size n, T const& value) {
|
||||
return sprout::remake<Container>(
|
||||
cont,
|
||||
n,
|
||||
sprout::value_iterator<T const&>(value, n), sprout::value_iterator<T const&>(value, 0)
|
||||
);
|
||||
}
|
||||
} // namespace detail
|
||||
//
|
||||
// fill_n
|
||||
//
|
||||
template<typename Container, typename Size, typename T>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
|
||||
fill_n(Container const& cont, Size n, T const& value) {
|
||||
return sprout::fixed::detail::fill_impl(
|
||||
cont, value,
|
||||
sprout::index_range<0, sprout::container_traits<Container>::static_size>::make(),
|
||||
sprout::internal_begin_offset(cont),
|
||||
n
|
||||
);
|
||||
return sprout::fixed::detail::fill_n(cont, n, value);
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue