Sprout/sprout/string/make_string.hpp

43 lines
1.4 KiB
C++
Raw Normal View History

2012-04-14 10:06:21 +00:00
#ifndef SPROUT_STRING_MAKE_STRING_HPP
#define SPROUT_STRING_MAKE_STRING_HPP
#include <cstddef>
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/string/char_traits.hpp>
#include <sprout/string/string.hpp>
#include <sprout/utility/forward.hpp>
namespace sprout {
//
// make_string
//
template<typename T, typename... Types>
inline SPROUT_CONSTEXPR sprout::basic_string<typename std::decay<T>::type, 1 + sizeof...(Types)>
make_string(T&& t, Types&&... args) {
typedef sprout::detail::make_construct_impl<
sprout::basic_string<typename std::decay<T>::type, 1 + sizeof...(Types)>
> impl_type;
return impl_type::make(sprout::forward<T>(t), sprout::forward<Types>(args)...);
2012-04-14 10:06:21 +00:00
}
//
// make_string_as
//
template<typename T>
inline SPROUT_CONSTEXPR sprout::basic_string<typename std::decay<T>::type, 0>
make_string_as() {
return sprout::basic_string<typename std::decay<T>::type, 0>{};
}
template<typename T, typename... Types>
inline SPROUT_CONSTEXPR sprout::basic_string<typename std::decay<T>::type, sizeof...(Types)>
make_string_as(Types&&... args) {
typedef sprout::detail::make_construct_impl<
sprout::basic_string<typename std::decay<T>::type, sizeof...(Types)>
> impl_type;
return impl_type::make(sprout::forward<Types>(args)...);
2012-04-14 10:06:21 +00:00
}
} // namespace sprout
#endif // #ifndef SPROUT_STRING_MAKE_STRING_HPP