mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
49 lines
1.8 KiB
C++
49 lines
1.8 KiB
C++
/*=============================================================================
|
|
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)
|
|
=============================================================================*/
|
|
#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)...);
|
|
}
|
|
|
|
//
|
|
// 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)...);
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_STRING_MAKE_STRING_HPP
|