1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/source/libs/string/u32string.rst

30 lines
785 B
ReStructuredText
Raw Normal View History

2013-09-08 04:44:32 +00:00
.. _sprout-string-basic_string-u32string:
###############################################################################
u32string
###############################################################################
Interface
========================================
.. sourcecode:: c++
template<std::size_t N>
using u32string = sprout::basic_string<char32_t, N>;
Examples
========================================
.. sourcecode:: c++
#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.");
Header
========================================
| ``sprout/string/alias.hpp``
| Convenience header: ``sprout/string.hpp``