Sprout/sprout/string/stretch.hpp

33 lines
1.1 KiB
C++
Raw Normal View History

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)
=============================================================================*/
2012-12-19 14:06:08 +00:00
#ifndef SPROUT_STRING_STRETCH_HPP
#define SPROUT_STRING_STRETCH_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/string/string.hpp>
namespace sprout {
//
// stretch
//
template<std::size_t To, typename T, std::size_t N, typename Traits>
inline SPROUT_CONSTEXPR sprout::basic_string<T, To, Traits>
stretch(sprout::basic_string<T, N, Traits> const& s) {
return s;
}
template<std::size_t To, typename T, std::size_t N>
inline SPROUT_CONSTEXPR sprout::basic_string<T, To>
stretch(T const(& arr)[N]) {
return sprout::stretch<To>(sprout::to_string(arr));
}
} // namespace sprout
#endif // #ifndef SPROUT_STRING_STRETCH_HPP