Sprout/sprout/string/concat.hpp

156 lines
4.8 KiB
C++
Raw Normal View History

2012-04-14 10:06:21 +00:00
#ifndef SPROUT_STRING_CONCAT_HPP
#define SPROUT_STRING_CONCAT_HPP
#include <cstddef>
#include <type_traits>
#include <sprout/config.hpp>
2012-04-18 04:37:35 +00:00
#include <sprout/index_tuple.hpp>
#include <sprout/string/char_traits.hpp>
2012-04-14 10:06:21 +00:00
#include <sprout/string/string.hpp>
namespace sprout {
2012-04-18 04:37:35 +00:00
namespace detail {
template<typename T, std::size_t N, typename Traits, sprout::index_t... Indexes>
inline SPROUT_CONSTEXPR sprout::basic_string<T, N + 1, Traits>
string_concat(
2012-10-05 15:58:56 +00:00
sprout::basic_string<T, N, Traits> const& lhs, std::size_t lsize,
2012-04-18 04:37:35 +00:00
T const& rhs,
sprout::index_tuple<Indexes...>
)
{
return sprout::basic_string<T, N + 1, Traits>{
{
(Indexes < lsize ? lhs[Indexes]
: Indexes < lsize + 1 ? rhs
: T()
)...
},
lsize + 1
};
}
template<typename T, std::size_t N, typename Traits, sprout::index_t... Indexes>
inline SPROUT_CONSTEXPR sprout::basic_string<T, 1 + N, Traits>
string_concat(
T const& lhs,
2012-10-05 15:58:56 +00:00
sprout::basic_string<T, N, Traits> const& rhs, std::size_t rsize,
2012-04-18 04:37:35 +00:00
sprout::index_tuple<Indexes...>
)
{
return sprout::basic_string<T, 1 + N, Traits>{
{
(Indexes < 1 ? lhs
: Indexes < 1 + rsize ? rhs[Indexes - 1]
: T()
)...
},
1 + rsize
};
}
template<typename T, std::size_t N, typename Traits, std::size_t M, sprout::index_t... Indexes>
inline SPROUT_CONSTEXPR sprout::basic_string<T, N + (M - 1), Traits>
string_concat(
2012-10-05 15:58:56 +00:00
sprout::basic_string<T, N, Traits> const& lhs, std::size_t lsize,
T const (& rhs)[M], std::size_t rsize,
2012-04-18 04:37:35 +00:00
sprout::index_tuple<Indexes...>
)
{
return sprout::basic_string<T, N + (M - 1), Traits>{
{
(Indexes < lsize ? lhs[Indexes]
: Indexes < lsize + rsize ? rhs[Indexes - lsize]
: T()
)...
},
lsize + rsize
};
}
template<typename T, std::size_t N, typename Traits, std::size_t M, sprout::index_t... Indexes>
inline SPROUT_CONSTEXPR sprout::basic_string<T, (M - 1) + N, Traits>
string_concat(
2012-10-05 15:58:56 +00:00
T const (& lhs)[M], std::size_t lsize,
sprout::basic_string<T, N, Traits> const& rhs, std::size_t rsize,
2012-04-18 04:37:35 +00:00
sprout::index_tuple<Indexes...>
)
{
return sprout::basic_string<T, (M - 1) + N, Traits>{
{
(Indexes < lsize ? lhs[Indexes]
: Indexes < lsize + rsize ? rhs[Indexes - lsize]
: T()
)...
},
lsize + rsize
};
}
template<typename T, std::size_t N1, std::size_t N2, typename Traits, sprout::index_t... Indexes>
inline SPROUT_CONSTEXPR sprout::basic_string<T, N1 + N2, Traits>
string_concat(
2012-10-05 15:58:56 +00:00
sprout::basic_string<T, N1, Traits> const& lhs, std::size_t lsize,
sprout::basic_string<T, N2, Traits> const& rhs, std::size_t rsize,
2012-04-18 04:37:35 +00:00
sprout::index_tuple<Indexes...>
)
{
return sprout::basic_string<T, N1 + N2, Traits>{
{
(Indexes < lsize ? lhs[Indexes]
: Indexes < lsize + rsize ? rhs[Indexes - lsize]
: T()
)...
},
lsize + rsize
};
}
} // namespace detail
2012-04-14 10:06:21 +00:00
//
// operator+
//
template<typename T, std::size_t N, typename Traits>
2012-04-18 04:37:35 +00:00
inline SPROUT_CONSTEXPR sprout::basic_string<T, N + 1, Traits>
operator+(sprout::basic_string<T, N, Traits> const& lhs, T const& rhs) {
return sprout::detail::string_concat(
lhs, lhs.size(),
rhs,
sprout::index_range<0, N + 1>::make()
);
2012-04-14 10:06:21 +00:00
}
template<typename T, std::size_t N, typename Traits>
2012-04-18 04:37:35 +00:00
inline SPROUT_CONSTEXPR sprout::basic_string<T, 1 + N, Traits>
operator+(T const& lhs, sprout::basic_string<T, N, Traits> const& rhs) {
return sprout::detail::string_concat(
lhs,
rhs, rhs.size(),
sprout::index_range<0, 1 + N>::make()
);
2012-04-14 10:06:21 +00:00
}
2012-04-18 04:37:35 +00:00
template<typename T, std::size_t N, typename Traits, std::size_t M>
inline SPROUT_CONSTEXPR sprout::basic_string<T, N + (M - 1), Traits>
operator+(sprout::basic_string<T, N, Traits> const& lhs, T const (& rhs)[M]) {
return sprout::detail::string_concat(
lhs, lhs.size(),
rhs, sprout::char_traits<T>::length(rhs),
sprout::index_range<0, N + (M - 1)>::make()
);
2012-04-14 10:06:21 +00:00
}
2012-04-18 04:37:35 +00:00
template<typename T, std::size_t N, typename Traits, std::size_t M>
inline SPROUT_CONSTEXPR sprout::basic_string<T, (M - 1) + N, Traits>
operator+(T const (& lhs)[M], sprout::basic_string<T, N, Traits> const& rhs) {
return sprout::detail::string_concat(
lhs, sprout::char_traits<T>::length(lhs),
rhs, rhs.size(),
sprout::index_range<0, (M - 1) + N>::make()
);
2012-04-14 10:06:21 +00:00
}
2012-04-18 04:37:35 +00:00
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
inline SPROUT_CONSTEXPR sprout::basic_string<T, N1 + N2, Traits>
operator+(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs) {
return sprout::detail::string_concat(
lhs, lhs.size(),
rhs, rhs.size(),
sprout::index_range<0, N1 + N2>::make()
);
2012-04-14 10:06:21 +00:00
}
} // namespace sprout
#endif // #ifndef SPROUT_STRING_CONCAT_HPP