mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
add to_string
This commit is contained in:
parent
89e2be54fa
commit
1968a6fac4
16 changed files with 1490 additions and 1085 deletions
29
sprout/string/tuple.hpp
Normal file
29
sprout/string/tuple.hpp
Normal file
|
@ -0,0 +1,29 @@
|
|||
#ifndef SPROUT_STRING_TUPLE_HPP
|
||||
#define SPROUT_STRING_TUPLE_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <tuple>
|
||||
#include <type_traits>
|
||||
#include <sprout/string/string.hpp>
|
||||
|
||||
namespace std {
|
||||
//
|
||||
// tuple_size
|
||||
//
|
||||
template<typename T, std::size_t N, typename Traits>
|
||||
struct tuple_size<sprout::basic_string<T, N, Traits> >
|
||||
: public std::integral_constant<std::size_t, N>
|
||||
{};
|
||||
|
||||
//
|
||||
// tuple_element
|
||||
//
|
||||
template<std::size_t I, typename T, std::size_t N, typename Traits>
|
||||
struct tuple_element<I, sprout::basic_string<T, N, Traits> > {
|
||||
public:
|
||||
static_assert(I < N, "tuple_element<>: index out of range");
|
||||
typedef T type;
|
||||
};
|
||||
} // namespace std
|
||||
|
||||
#endif // #ifndef SPROUT_STRING_TUPLE_HPP
|
Loading…
Add table
Add a link
Reference in a new issue