mirror of
https://github.com/pybind/pybind11.git
synced 2026-06-08 23:39:12 +00:00
Working type casters for wide strings and wide characters
This commit is contained in:
@@ -241,10 +241,14 @@ as arguments and return values, refer to the section on binding :ref:`classes`.
|
||||
+----------------------------+--------------------------+-----------------------+
|
||||
| char | Character literal | pybind11/pybind11.h |
|
||||
+----------------------------+--------------------------+-----------------------+
|
||||
| wchar_t | Wide character literal | pybind11/pybind11.h |
|
||||
+----------------------------+--------------------------+-----------------------+
|
||||
| const char * | UTF-8 string literal | pybind11/pybind11.h |
|
||||
+----------------------------+--------------------------+-----------------------+
|
||||
| std::string | STL dynamic UTF-8 string | pybind11/pybind11.h |
|
||||
+----------------------------+--------------------------+-----------------------+
|
||||
| std::wstring | STL dynamic wide string | pybind11/pybind11.h |
|
||||
+----------------------------+--------------------------+-----------------------+
|
||||
| std::pair<T1, T2> | Pair of two custom types | pybind11/pybind11.h |
|
||||
+----------------------------+--------------------------+-----------------------+
|
||||
| std::tuple<....> | Arbitrary tuple of types | pybind11/pybind11.h |
|
||||
|
||||
@@ -5,8 +5,7 @@ Changelog
|
||||
|
||||
1.4 (not yet released)
|
||||
--------------------------
|
||||
TBD
|
||||
|
||||
* Transparent type conversion for ``std::wstring`` and ``wchar_t``
|
||||
|
||||
1.3 (March 8, 2016)
|
||||
--------------------------
|
||||
|
||||
Reference in New Issue
Block a user