From 76eb607d4ed821de36df703f7de1c428e93fa6e7 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Mon, 21 Mar 2016 17:53:39 +0100 Subject: [PATCH] completed type table --- docs/basics.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/basics.rst b/docs/basics.rst index cb8962c5d..42ff6e42e 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -245,6 +245,8 @@ as arguments and return values, refer to the section on binding :ref:`classes`. +----------------------------+--------------------------+-----------------------+ | const char * | UTF-8 string literal | pybind11/pybind11.h | +----------------------------+--------------------------+-----------------------+ +| const wchar_t * | Wide string literal | pybind11/pybind11.h | ++----------------------------+--------------------------+-----------------------+ | std::string | STL dynamic UTF-8 string | pybind11/pybind11.h | +----------------------------+--------------------------+-----------------------+ | std::wstring | STL dynamic wide string | pybind11/pybind11.h | @@ -259,6 +261,8 @@ as arguments and return values, refer to the section on binding :ref:`classes`. +----------------------------+--------------------------+-----------------------+ | std::vector | STL dynamic array | pybind11/stl.h | +----------------------------+--------------------------+-----------------------+ +| std::list | STL linked list | pybind11/stl.h | ++----------------------------+--------------------------+-----------------------+ | std::map | STL ordered map | pybind11/stl.h | +----------------------------+--------------------------+-----------------------+ | std::unordered_map | STL unordered map | pybind11/stl.h |