mirror of
https://github.com/pybind/pybind11.git
synced 2026-03-14 20:27:47 +00:00
convenience wrapper for constructing iterators (fixes #142)
This commit is contained in:
@@ -45,6 +45,7 @@ pybind11 can map the following core C++ features to Python
|
||||
- Callbacks
|
||||
- Custom operators
|
||||
- STL data structures
|
||||
- Iterators and ranges
|
||||
- Smart pointers with reference counting like `std::shared_ptr`
|
||||
- Internal references with correct reference counting
|
||||
- C++ classes with virtual (and pure virtual) methods can be extended in Python
|
||||
@@ -78,6 +79,9 @@ In addition to the core functionality, pybind11 provides some extra goodies:
|
||||
return value deduction) are used to precompute function signatures at compile
|
||||
time, leading to smaller binaries.
|
||||
|
||||
- With little extra effort, C++ types can be pickled and unpickled similar to
|
||||
regular Python objects.
|
||||
|
||||
## Supported compilers
|
||||
|
||||
1. Clang/LLVM (any non-ancient version with C++11 support)
|
||||
|
||||
Reference in New Issue
Block a user