2012-09-21 06:43:30 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_UNFOLD_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_UNFOLD_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
|
|
|
#include <sprout/detail/container_complate.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
|
|
|
template<std::size_t InitSize, typename Container, typename Generator, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
InitSize == 0,
|
|
|
|
typename sprout::container_traits<Container>::value_type
|
|
|
|
>::type call_gen(
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return gen();
|
|
|
|
}
|
|
|
|
template<std::size_t InitSize, typename Container, typename Generator, typename Head, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
InitSize != 0 && InitSize == sizeof...(Args) + 1,
|
|
|
|
typename sprout::container_traits<Container>::value_type
|
|
|
|
>::type call_gen(
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
Head const& head,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return gen(head, args...);
|
|
|
|
}
|
|
|
|
template<std::size_t InitSize, typename Container, typename Generator, typename Head, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
InitSize != 0 && InitSize != sizeof...(Args) + 1,
|
|
|
|
typename sprout::container_traits<Container>::value_type
|
|
|
|
>::type call_gen(
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
Head const& head,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return call_gen<InitSize, Container>(gen, args...);
|
|
|
|
}
|
|
|
|
template<typename Container, typename Generator>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type unfold_impl_drop(
|
|
|
|
Container const& cont,
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
typename sprout::container_traits<Container>::size_type size
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::detail::container_complate(cont);
|
|
|
|
}
|
|
|
|
template<typename Container, typename Generator, typename Head, typename... Inits>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
(sprout::container_traits<Container>::static_size >= sizeof...(Inits) + 1),
|
|
|
|
typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
>::type unfold_impl_drop(
|
|
|
|
Container const& cont,
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
typename sprout::container_traits<Container>::size_type size,
|
|
|
|
Head const& head,
|
|
|
|
Inits const&... inits
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return size < sizeof...(Inits) + 1
|
|
|
|
? sprout::fixed::detail::unfold_impl_drop(cont, gen, size, inits...)
|
|
|
|
: sprout::detail::container_complate(cont, head, inits...)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Container, typename Generator, typename Head, typename... Inits>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
(sprout::container_traits<Container>::static_size < sizeof...(Inits) + 1),
|
|
|
|
typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
>::type unfold_impl_drop(
|
|
|
|
Container const& cont,
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
typename sprout::container_traits<Container>::size_type size,
|
|
|
|
Head const& head,
|
|
|
|
Inits const&... inits
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::unfold_impl_drop(cont, gen, size, inits...);
|
|
|
|
}
|
|
|
|
template<std::size_t InitSize, typename Container, typename Generator, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::container_traits<Container>::static_size == sizeof...(Args),
|
|
|
|
typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
>::type unfold_impl_1(
|
|
|
|
Container const& cont,
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
typename sprout::container_traits<Container>::size_type size,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::remake<Container>(cont, sprout::size(cont), args...);
|
|
|
|
}
|
|
|
|
template<std::size_t InitSize, typename Container, typename Generator, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::container_traits<Container>::static_size != sizeof...(Args),
|
|
|
|
typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
>::type unfold_impl_1(
|
|
|
|
Container const& cont,
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
typename sprout::container_traits<Container>::size_type size,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sizeof...(Args) < size
|
|
|
|
? sprout::fixed::detail::unfold_impl_1<InitSize>(cont, gen, size, args..., sprout::fixed::detail::call_gen<InitSize, Container>(gen, args...))
|
|
|
|
: sprout::detail::container_complate(cont, args...)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Container, typename Generator, typename... Inits>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
(sprout::container_traits<Container>::static_size > sizeof...(Inits)),
|
|
|
|
typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
>::type unfold_impl(
|
|
|
|
Container const& cont,
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
typename sprout::container_traits<Container>::size_type size,
|
|
|
|
Inits const&... inits
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sizeof...(Inits) < size
|
|
|
|
? sprout::fixed::detail::unfold_impl_1<sizeof...(Inits)>(cont, gen, size, inits...)
|
|
|
|
: sprout::fixed::detail::unfold_impl_drop(cont, gen, size, inits...)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Container, typename Generator, typename... Inits>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
(sprout::container_traits<Container>::static_size <= sizeof...(Inits)),
|
|
|
|
typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
>::type unfold_impl(
|
|
|
|
Container const& cont,
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
typename sprout::container_traits<Container>::size_type size,
|
|
|
|
Inits const&... inits
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::unfold_impl_drop(cont, gen, size, inits...);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// unfold
|
|
|
|
//
|
|
|
|
template<typename Container, typename Generator, typename... Inits>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type unfold(
|
|
|
|
Container const& cont,
|
2012-09-27 13:15:29 +00:00
|
|
|
Generator const& gen,
|
2012-09-21 06:43:30 +00:00
|
|
|
Inits const&... inits
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::unfold_impl(cont, gen, sprout::size(cont), inits...);
|
|
|
|
}
|
|
|
|
} // namespace fixed
|
|
|
|
|
|
|
|
using sprout::fixed::unfold;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_UNFOLD_HPP
|