mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
add doc: basic_string aliases
This commit is contained in:
parent
7b0f0541e3
commit
c6a9bf338a
16 changed files with 899 additions and 15 deletions
29
source/libs/string/u32string.rst
Normal file
29
source/libs/string/u32string.rst
Normal 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``
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue