Table Of Contents

Previous topic

u16string

Next topic

swap

This Page

u32string

Interface

template<std::size_t N>
using u32string = sprout::basic_string<char32_t, N>;

Examples

#include <type_traits>
#include <sprout/string.hpp>
using namespace sprout;

using type = u32string<8>;
static_assert(std::is_same<type::value_type, char32_t>::value, "element type of u32string is char32_t.");