mirror of
https://github.com/pybind/pybind11.git
synced 2025-03-24 09:36:41 +00:00
This allows exposing a dict-like interface to python code, allowing iteration over keys via: for k in custommapping: ... while still allowing iteration over pairs, so that you can also implement 'dict.items()' functionality which returns a pair iterator, allowing: for k, v in custommapping.items(): ... example-sequences-and-iterators is updated with a custom class providing both types of iteration. |
||
---|---|---|
.. | ||
pybind11 |