aboutsummaryrefslogtreecommitdiffstats
path: root/deps/sol2/docs/source/codecvt.rst
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-30 00:19:31 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-30 00:19:31 -0400
commitbd3fe0cac583739bc0d7c4b5c8f301bb350abca0 (patch)
tree7eeb1aabcebd6999de1c3457d0882246ec0ff4d4 /deps/sol2/docs/source/codecvt.rst
parent2662ac356ce14dacfbc91689fd37244facff4989 (diff)
Renamed lib to deps so github will ignore it for language stats
Diffstat (limited to 'deps/sol2/docs/source/codecvt.rst')
-rw-r--r--deps/sol2/docs/source/codecvt.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/deps/sol2/docs/source/codecvt.rst b/deps/sol2/docs/source/codecvt.rst
new file mode 100644
index 0000000..66f1966
--- /dev/null
+++ b/deps/sol2/docs/source/codecvt.rst
@@ -0,0 +1,14 @@
+unicode transformation format handling
+======================================
+because this is surprisingly hard using standard C++
+----------------------------------------------------
+
+.. note::
+
+ The ``<codecvt>`` header is no longer used and sol3 now converts utf8, utf16, and utf32 with internal routines. If you have a problem with the transcoding, please `file an issue report`_.
+
+``std::(w)string(u16/u32)`` are assumed to be in the platform's native wide (for ``wstring``) or unicode format. Lua canonically stores its string literals as utf8 and embraces utf8, albeit its storage is simply a sequence of bytes that are also null-terminated (it is also counted and the size is kept around, so embedded nulls can be used in the string). Therefore, if you need to interact with the unicode or wide alternatives of strings, runtime conversions are performed from the (assumed) utf8 string data into other forms. These conversions check for well-formed UTF, and will replace ill-formed characters with the unicode replacement codepoint, 0xFFFD.
+
+Note that we cannot give you a ``string_view`` to utf16 or utf32 strings: Lua does not hold them in memory this way. You can perhaps do your own customization to provide for this if need be. Remember that Lua stores a counted sequence of bytes: serializing your string as bytes and pushing a string type into Lua's stack will work, though do not except any complex string routines or printing to behave nicely with your code.
+
+.. _file an issue report: https://github.com/ThePhD/sol2/issues