2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2011-10-10 01:20:21 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_STRING_JOIN_HPP
|
|
|
|
#define SPROUT_ALGORITHM_STRING_JOIN_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2013-03-31 06:14:10 +00:00
|
|
|
#include <sprout/container/indexes.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/metafunction.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/pit/pit.hpp>
|
2013-02-26 07:14:04 +00:00
|
|
|
#include <sprout/iterator/type_traits/category.hpp>
|
2012-05-21 16:06:13 +00:00
|
|
|
#include <sprout/range/adaptor/size_enumed.hpp>
|
|
|
|
#include <sprout/range/algorithm/lower_bound.hpp>
|
|
|
|
#include <sprout/range/numeric/partial_sum.hpp>
|
2012-05-23 10:33:06 +00:00
|
|
|
#include <sprout/type_traits/is_c_str.hpp>
|
2011-10-10 01:20:21 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace algorithm {
|
2012-05-21 16:06:13 +00:00
|
|
|
namespace detail {
|
|
|
|
template<typename String, typename = void>
|
|
|
|
struct string_size;
|
|
|
|
template<typename String>
|
|
|
|
struct string_size<
|
|
|
|
String,
|
2012-05-23 10:33:06 +00:00
|
|
|
typename std::enable_if<sprout::is_c_str<String>::value>::type
|
2012-05-21 16:06:13 +00:00
|
|
|
>
|
|
|
|
: public std::integral_constant<
|
|
|
|
typename sprout::container_traits<String>::size_type,
|
|
|
|
sprout::container_traits<String>::static_size - 1
|
|
|
|
>
|
|
|
|
{};
|
|
|
|
template<typename String>
|
|
|
|
struct string_size<
|
|
|
|
String,
|
2012-05-23 10:33:06 +00:00
|
|
|
typename std::enable_if<!sprout::is_c_str<String>::value>::type
|
2012-05-21 16:06:13 +00:00
|
|
|
>
|
|
|
|
: public std::integral_constant<
|
|
|
|
typename sprout::container_traits<String>::size_type,
|
|
|
|
sprout::container_traits<String>::static_size
|
|
|
|
>
|
|
|
|
{};
|
|
|
|
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename String>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::is_c_str<String>::value,
|
|
|
|
typename sprout::container_traits<String>::difference_type
|
|
|
|
>::type
|
2012-05-21 16:06:13 +00:00
|
|
|
str_size(String const& str) {
|
|
|
|
return sprout::size(str) - 1;
|
|
|
|
}
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename String>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
!sprout::is_c_str<String>::value,
|
|
|
|
typename sprout::container_traits<String>::difference_type
|
|
|
|
>::type
|
2012-05-21 16:06:13 +00:00
|
|
|
str_size(String const& str) {
|
|
|
|
return sprout::size(str);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
|
2011-10-10 01:20:21 +00:00
|
|
|
namespace result_of {
|
|
|
|
//
|
|
|
|
// join
|
|
|
|
//
|
2012-05-21 16:06:13 +00:00
|
|
|
template<typename ContainerContainer, typename Separator = void>
|
2013-03-26 17:02:16 +00:00
|
|
|
struct join
|
|
|
|
: public sprout::container_transform_traits<
|
2012-05-21 16:06:13 +00:00
|
|
|
typename sprout::container_traits<ContainerContainer>::value_type
|
|
|
|
>::template rebind_size<
|
|
|
|
sprout::container_traits<
|
|
|
|
typename sprout::container_traits<ContainerContainer>::value_type
|
|
|
|
>::static_size
|
|
|
|
? (sprout::container_traits<
|
|
|
|
typename sprout::container_traits<ContainerContainer>::value_type
|
|
|
|
>::static_size
|
|
|
|
+ sprout::algorithm::detail::string_size<Separator>::value
|
|
|
|
)
|
|
|
|
* sprout::container_traits<ContainerContainer>::static_size
|
|
|
|
- sprout::algorithm::detail::string_size<Separator>::value
|
|
|
|
: 0
|
2013-03-26 17:02:16 +00:00
|
|
|
>
|
|
|
|
{};
|
2012-05-21 16:06:13 +00:00
|
|
|
template<typename ContainerContainer>
|
2013-03-26 17:02:16 +00:00
|
|
|
struct join<ContainerContainer, void>
|
|
|
|
: public sprout::container_transform_traits<
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<ContainerContainer>::value_type
|
|
|
|
>::template rebind_size<
|
|
|
|
sprout::container_traits<
|
|
|
|
typename sprout::container_traits<ContainerContainer>::value_type
|
|
|
|
>::static_size
|
|
|
|
* sprout::container_traits<ContainerContainer>::static_size
|
2013-03-26 17:02:16 +00:00
|
|
|
>
|
|
|
|
{};
|
2011-10-10 01:20:21 +00:00
|
|
|
} // namespace result_of
|
|
|
|
|
|
|
|
namespace detail {
|
2012-05-21 16:06:13 +00:00
|
|
|
template<typename Result, typename ContIterator, typename SizeIterator, typename Sizes>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::container_traits<Result>::value_type
|
|
|
|
join_impl_ra_2(
|
|
|
|
ContIterator first_cont,
|
|
|
|
SizeIterator found,
|
|
|
|
Sizes const& sizes,
|
|
|
|
sprout::index_t idx
|
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef typename sprout::container_traits<Result>::value_type value_type;
|
|
|
|
return found == sizes.end() ? value_type()
|
|
|
|
: sprout::begin(first_cont[found - sizes.begin()])[idx - (found != sizes.begin() ? found[-1] : 0)]
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Result, typename ContIterator, sprout::index_t... Indexes, typename Sizes>
|
|
|
|
inline SPROUT_CONSTEXPR Result
|
|
|
|
join_impl_ra_1(
|
|
|
|
ContIterator first_cont,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
Sizes const& sizes
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::make<Result>(
|
|
|
|
sprout::algorithm::detail::join_impl_ra_2<Result>(
|
|
|
|
first_cont,
|
|
|
|
sprout::range::lower_bound(sizes, Indexes + 1),
|
|
|
|
sizes,
|
|
|
|
Indexes
|
|
|
|
)...
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename Result, typename ContainerContainer>
|
|
|
|
inline SPROUT_CONSTEXPR Result
|
|
|
|
join_impl_ra(ContainerContainer const& cont_cont) {
|
|
|
|
typedef typename sprout::container_traits<Result>::difference_type size_type;
|
|
|
|
typedef sprout::array<
|
|
|
|
size_type,
|
|
|
|
sprout::container_traits<ContainerContainer>::static_size
|
|
|
|
> sizes_type;
|
|
|
|
return sprout::algorithm::detail::join_impl_ra_1<Result>(
|
|
|
|
sprout::begin(cont_cont),
|
2013-03-31 06:14:10 +00:00
|
|
|
sprout::container_indexes<Result>::make(),
|
2012-05-21 16:06:13 +00:00
|
|
|
sprout::range::partial_sum(
|
|
|
|
cont_cont | sprout::adaptors::size_enumed,
|
|
|
|
sprout::pit<sizes_type>()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Result, typename ContIterator, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
2011-11-04 13:17:25 +00:00
|
|
|
Result
|
|
|
|
>::type join_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator first_cont, ContIterator last_cont,
|
2011-11-04 13:17:25 +00:00
|
|
|
Args const&... args
|
|
|
|
);
|
2012-05-21 16:06:13 +00:00
|
|
|
template<typename Result, typename ContIterator, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
2011-11-04 13:17:25 +00:00
|
|
|
Result
|
|
|
|
>::type join_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator first_cont, ContIterator last_cont,
|
2011-11-04 13:17:25 +00:00
|
|
|
Args const&... args
|
|
|
|
);
|
2012-05-21 16:06:13 +00:00
|
|
|
template<typename Result, typename ContIterator, typename InputIterator, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
2011-10-10 01:20:21 +00:00
|
|
|
Result
|
|
|
|
>::type join_impl_1(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator, ContIterator,
|
|
|
|
InputIterator, InputIterator,
|
2011-11-04 13:17:25 +00:00
|
|
|
Args const&... args
|
2011-10-10 01:20:21 +00:00
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::make<Result>(args...);
|
2011-10-10 01:20:21 +00:00
|
|
|
}
|
2012-05-21 16:06:13 +00:00
|
|
|
template<typename Result, typename ContIterator, typename InputIterator, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
2011-10-10 01:20:21 +00:00
|
|
|
Result
|
|
|
|
>::type join_impl_1(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator first_cont, ContIterator last_cont,
|
|
|
|
InputIterator first, InputIterator last,
|
2011-11-04 13:17:25 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first != last
|
2012-05-21 16:06:13 +00:00
|
|
|
? sprout::algorithm::detail::join_impl_1<Result>(
|
|
|
|
first_cont, last_cont,
|
|
|
|
sprout::next(first), last,
|
|
|
|
args..., *first
|
|
|
|
)
|
2011-11-04 13:17:25 +00:00
|
|
|
: sprout::algorithm::detail::join_impl<Result>(sprout::next(first_cont), last_cont, args...)
|
|
|
|
;
|
|
|
|
}
|
2012-05-21 16:06:13 +00:00
|
|
|
template<typename Result, typename ContIterator, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
2011-11-04 13:17:25 +00:00
|
|
|
Result
|
|
|
|
>::type join_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator, ContIterator,
|
2011-11-04 13:17:25 +00:00
|
|
|
Args const&... args
|
2011-10-10 01:20:21 +00:00
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::make<Result>(args...);
|
2011-10-10 01:20:21 +00:00
|
|
|
}
|
2012-05-21 16:06:13 +00:00
|
|
|
template<typename Result, typename ContIterator, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
2011-11-04 13:17:25 +00:00
|
|
|
Result
|
|
|
|
>::type join_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator first_cont, ContIterator last_cont,
|
2011-11-04 13:17:25 +00:00
|
|
|
Args const&... args
|
2011-10-10 01:20:21 +00:00
|
|
|
)
|
|
|
|
{
|
2011-11-04 13:17:25 +00:00
|
|
|
return first_cont != last_cont
|
2012-05-21 16:06:13 +00:00
|
|
|
? sprout::algorithm::detail::join_impl_1<Result>(
|
|
|
|
first_cont, last_cont,
|
|
|
|
sprout::begin(*first_cont), sprout::end(*first_cont),
|
|
|
|
args...
|
|
|
|
)
|
2012-03-31 07:24:13 +00:00
|
|
|
: sprout::make<Result>(args...)
|
2011-10-10 01:20:21 +00:00
|
|
|
;
|
|
|
|
}
|
2012-05-21 16:06:13 +00:00
|
|
|
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename ContainerContainer>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::is_random_access_iterator<
|
|
|
|
typename sprout::container_traits<ContainerContainer const>::iterator
|
|
|
|
>::value
|
2012-05-21 16:06:13 +00:00
|
|
|
&& sprout::is_random_access_iterator<
|
|
|
|
typename sprout::container_traits<
|
|
|
|
typename sprout::container_traits<ContainerContainer const>::value_type
|
|
|
|
>::iterator
|
|
|
|
>::value
|
2012-12-17 11:10:17 +00:00
|
|
|
,
|
|
|
|
typename sprout::algorithm::result_of::join<ContainerContainer>::type
|
|
|
|
>::type
|
2012-05-21 16:06:13 +00:00
|
|
|
join(ContainerContainer const& cont_cont) {
|
|
|
|
typedef typename sprout::algorithm::result_of::join<ContainerContainer>::type result_type;
|
|
|
|
return sprout::algorithm::detail::join_impl_ra<result_type>(cont_cont);
|
|
|
|
}
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename ContainerContainer>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<!(
|
|
|
|
sprout::is_random_access_iterator<
|
|
|
|
typename sprout::container_traits<ContainerContainer const>::iterator
|
|
|
|
>::value
|
2012-05-21 16:06:13 +00:00
|
|
|
&& sprout::is_random_access_iterator<
|
|
|
|
typename sprout::container_traits<
|
|
|
|
typename sprout::container_traits<ContainerContainer const>::value_type
|
|
|
|
>::iterator
|
|
|
|
>::value
|
2012-12-17 11:10:17 +00:00
|
|
|
),
|
|
|
|
typename sprout::algorithm::result_of::join<ContainerContainer>::type
|
|
|
|
>::type
|
2012-05-21 16:06:13 +00:00
|
|
|
join(ContainerContainer const& cont_cont) {
|
|
|
|
typedef typename sprout::algorithm::result_of::join<ContainerContainer>::type result_type;
|
|
|
|
return sprout::algorithm::detail::join_impl<result_type>(
|
|
|
|
sprout::begin(cont_cont),
|
|
|
|
sprout::end(cont_cont)
|
|
|
|
);
|
|
|
|
}
|
2011-10-10 01:20:21 +00:00
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// join
|
|
|
|
//
|
2011-11-04 13:17:25 +00:00
|
|
|
template<typename ContainerContainer>
|
2012-05-21 16:06:13 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::algorithm::result_of::join<ContainerContainer>::type
|
|
|
|
join(ContainerContainer const& cont_cont) {
|
|
|
|
return sprout::algorithm::detail::join(cont_cont);
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
template<typename Result, typename ContIterator, typename SepIterator, typename SizeIterator, typename Sizes>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::container_traits<Result>::value_type
|
|
|
|
join_impl_ra_2(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator first_cont, SepIterator first,
|
2012-05-21 16:06:13 +00:00
|
|
|
SizeIterator found,
|
|
|
|
Sizes const& sizes,
|
|
|
|
sprout::index_t idx
|
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef typename sprout::container_traits<Result>::value_type value_type;
|
|
|
|
return found == sizes.end() ? value_type()
|
|
|
|
: (found - sizes.begin()) % 2 ? first[idx - found[-1]]
|
|
|
|
: sprout::begin(first_cont[(found - sizes.begin()) / 2])[idx - (found != sizes.begin() ? found[-1] : 0)]
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Result, typename ContIterator, typename SepIterator, sprout::index_t... Indexes, typename Sizes>
|
|
|
|
inline SPROUT_CONSTEXPR Result
|
|
|
|
join_impl_ra_1(
|
|
|
|
ContIterator first_cont,
|
|
|
|
SepIterator first,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
Sizes const& sizes
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::make<Result>(
|
|
|
|
sprout::algorithm::detail::join_impl_ra_2<Result>(
|
|
|
|
first_cont,
|
|
|
|
first,
|
|
|
|
sprout::range::lower_bound(sizes, Indexes + 1),
|
|
|
|
sizes,
|
|
|
|
Indexes
|
|
|
|
)...
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename Result, typename ContainerContainer, typename Separator>
|
|
|
|
inline SPROUT_CONSTEXPR Result
|
|
|
|
join_impl_ra(ContainerContainer const& cont_cont, Separator const& separator) {
|
|
|
|
typedef typename sprout::container_traits<Result>::difference_type size_type;
|
|
|
|
typedef sprout::array<
|
|
|
|
size_type,
|
|
|
|
sprout::container_traits<ContainerContainer>::static_size
|
|
|
|
? sprout::container_traits<ContainerContainer>::static_size * 2 - 1
|
|
|
|
: 0
|
|
|
|
> sizes_type;
|
|
|
|
return sprout::algorithm::detail::join_impl_ra_1<Result>(
|
|
|
|
sprout::begin(cont_cont),
|
|
|
|
sprout::begin(separator),
|
2013-03-31 06:14:10 +00:00
|
|
|
sprout::container_indexes<Result>::make(),
|
2012-05-21 16:06:13 +00:00
|
|
|
sprout::range::partial_sum(
|
|
|
|
cont_cont | sprout::adaptors::size_enumed(sprout::algorithm::detail::str_size(separator), true),
|
|
|
|
sprout::pit<sizes_type>()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Result, typename ContIterator, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
|
|
|
Result
|
|
|
|
>::type join_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator first_cont, ContIterator last_cont,
|
2012-05-21 16:06:13 +00:00
|
|
|
Args const&... args
|
|
|
|
);
|
|
|
|
template<typename Result, typename ContIterator, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
|
|
|
Result
|
|
|
|
>::type join_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator first_cont, ContIterator last_cont,
|
2012-05-21 16:06:13 +00:00
|
|
|
Args const&... args
|
2011-10-10 01:20:21 +00:00
|
|
|
);
|
2012-05-21 16:06:13 +00:00
|
|
|
template<typename Result, typename ContIterator, typename SepIterator, typename InputIterator, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
|
|
|
Result
|
|
|
|
>::type join_impl_1(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator, ContIterator,
|
|
|
|
SepIterator, SepIterator,
|
|
|
|
bool,
|
|
|
|
InputIterator, InputIterator,
|
2012-05-21 16:06:13 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::make<Result>(args...);
|
|
|
|
}
|
|
|
|
template<typename Result, typename ContIterator, typename SepIterator, typename InputIterator, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
|
|
|
Result
|
|
|
|
>::type join_impl_1(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator first_cont, ContIterator last_cont,
|
|
|
|
SepIterator sep_first, SepIterator sep_last,
|
2012-05-21 16:06:13 +00:00
|
|
|
bool sep,
|
2013-07-22 13:00:09 +00:00
|
|
|
InputIterator first, InputIterator last,
|
2012-05-21 16:06:13 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first != last
|
|
|
|
? sprout::algorithm::detail::join_impl_1<Result>(
|
|
|
|
first_cont, last_cont,
|
|
|
|
sep_first, sep_last,
|
|
|
|
sep,
|
|
|
|
sprout::next(first), last,
|
|
|
|
args..., *first
|
|
|
|
)
|
|
|
|
: sep
|
|
|
|
? sprout::algorithm::detail::join_impl<Result>(
|
|
|
|
sprout::next(first_cont), last_cont,
|
|
|
|
sep_first, sep_last,
|
|
|
|
false,
|
|
|
|
args...
|
|
|
|
)
|
|
|
|
: sprout::algorithm::detail::join_impl<Result>(
|
|
|
|
first_cont, last_cont,
|
|
|
|
sep_first, sep_last,
|
|
|
|
true,
|
|
|
|
args...
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Result, typename ContIterator, typename SepIterator, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
|
|
|
Result
|
|
|
|
>::type join_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator, ContIterator,
|
|
|
|
SepIterator, SepIterator,
|
|
|
|
bool,
|
2012-05-21 16:06:13 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::make<Result>(args...);
|
|
|
|
}
|
|
|
|
template<typename Result, typename ContIterator, typename SepIterator, typename... Args>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
|
|
|
Result
|
|
|
|
>::type join_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
ContIterator first_cont, ContIterator last_cont,
|
|
|
|
SepIterator sep_first, SepIterator sep_last,
|
2012-05-21 16:06:13 +00:00
|
|
|
bool sep,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first_cont != last_cont
|
|
|
|
? sep
|
|
|
|
? sprout::algorithm::detail::join_impl_1<Result>(
|
|
|
|
first_cont, last_cont,
|
|
|
|
sep_first, sep_last,
|
|
|
|
sep,
|
|
|
|
sep_first, sep_last,
|
|
|
|
args...
|
|
|
|
)
|
|
|
|
: sprout::algorithm::detail::join_impl_1<Result>(
|
|
|
|
first_cont, last_cont,
|
|
|
|
sep_first, sep_last,
|
|
|
|
sep,
|
|
|
|
sprout::begin(*first_cont), sprout::end(*first_cont),
|
|
|
|
args...
|
|
|
|
)
|
|
|
|
: sprout::make<Result>(args...)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename ContainerContainer, typename Separator>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::is_random_access_iterator<
|
|
|
|
typename sprout::container_traits<ContainerContainer const>::iterator
|
|
|
|
>::value
|
2012-05-21 16:06:13 +00:00
|
|
|
&& sprout::is_random_access_iterator<
|
|
|
|
typename sprout::container_traits<
|
|
|
|
typename sprout::container_traits<ContainerContainer const>::value_type
|
|
|
|
>::iterator
|
|
|
|
>::value
|
|
|
|
&& sprout::is_random_access_iterator<
|
|
|
|
typename sprout::container_traits<Separator const>::iterator
|
|
|
|
>::value
|
2012-12-17 11:10:17 +00:00
|
|
|
,
|
|
|
|
typename sprout::algorithm::result_of::join<ContainerContainer, Separator>::type
|
|
|
|
>::type
|
2012-05-21 16:06:13 +00:00
|
|
|
join(ContainerContainer const& cont_cont, Separator const& separator) {
|
2012-12-17 11:10:17 +00:00
|
|
|
typedef typename sprout::algorithm::result_of::join<ContainerContainer, Separator>::type result_type;
|
2012-05-21 16:06:13 +00:00
|
|
|
return sprout::algorithm::detail::join_impl_ra<result_type>(cont_cont, separator);
|
|
|
|
}
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename ContainerContainer, typename Separator>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<!(
|
|
|
|
sprout::is_random_access_iterator<
|
|
|
|
typename sprout::container_traits<ContainerContainer const>::iterator
|
|
|
|
>::value
|
2012-05-21 16:06:13 +00:00
|
|
|
&& sprout::is_random_access_iterator<
|
|
|
|
typename sprout::container_traits<
|
|
|
|
typename sprout::container_traits<ContainerContainer const>::value_type
|
|
|
|
>::iterator
|
|
|
|
>::value
|
|
|
|
&& sprout::is_random_access_iterator<
|
|
|
|
typename sprout::container_traits<Separator const>::iterator
|
|
|
|
>::value
|
2012-12-17 11:10:17 +00:00
|
|
|
),
|
|
|
|
typename sprout::algorithm::result_of::join<ContainerContainer, Separator>::type
|
|
|
|
>::type
|
2012-05-21 16:06:13 +00:00
|
|
|
join(ContainerContainer const& cont_cont, Separator const& separator) {
|
2012-12-17 11:10:17 +00:00
|
|
|
typedef typename sprout::algorithm::result_of::join<ContainerContainer, Separator>::type result_type;
|
2012-05-21 16:06:13 +00:00
|
|
|
return sprout::algorithm::detail::join_impl<result_type>(
|
|
|
|
sprout::begin(cont_cont),
|
|
|
|
sprout::end(cont_cont),
|
|
|
|
sprout::begin(separator),
|
|
|
|
sprout::end(separator),
|
|
|
|
false
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// join
|
|
|
|
//
|
|
|
|
template<typename ContainerContainer, typename Separator>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::algorithm::result_of::join<ContainerContainer, Separator>::type
|
|
|
|
join(ContainerContainer const& cont_cont, Separator const& separator) {
|
|
|
|
return sprout::algorithm::detail::join(cont_cont, separator);
|
2011-10-10 01:20:21 +00:00
|
|
|
}
|
|
|
|
} // namespace algorithm
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_STRING_JOIN_HPP
|