convenience wrapper for constructing iterators (fixes #142)

This commit is contained in:
Wenzel Jakob
2016-04-13 23:33:00 +02:00
parent 5a6aa49105
commit b282595bba
7 changed files with 100 additions and 49 deletions

View File

@@ -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)