Commit 44db04f5 by Wenzel Jakob

clarification regarding STL container support

parent a4caa85f
...@@ -357,14 +357,14 @@ Passing STL data structures ...@@ -357,14 +357,14 @@ Passing STL data structures
=========================== ===========================
When including the additional header file :file:`pybind11/stl.h`, conversions When including the additional header file :file:`pybind11/stl.h`, conversions
between ``std::vector<>`` and ``std::map<>`` and the Python ``list`` and between ``std::vector<>``, ``std::map<>``, and ``std::map<>`` and the Python
``dict`` data structures are automatically enabled. The types ``std::pair<>`` ``list``, ``set`` and ``dict`` data structures are automatically enabled. The
and ``std::tuple<>`` are already supported out of the box with just the core types ``std::pair<>`` and ``std::tuple<>`` are already supported out of the box
:file:`pybind11/pybind11.h` header. with just the core :file:`pybind11/pybind11.h` header.
.. note:: .. note::
Arbitrary nesting of any of these types is explicitly permitted. Arbitrary nesting of any of these types is supported.
.. seealso:: .. seealso::
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment