add doc: basic_string aliases

This commit is contained in:
Bolero-MURAKAMI 2013-09-08 13:44:32 +09:00
parent 7b0f0541e3
commit c6a9bf338a
16 changed files with 899 additions and 15 deletions

View file

@ -0,0 +1,29 @@
.. _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``