convenience wrapper for constructing iterators (fixes #142)
diff --git a/README.md b/README.md
index 85172cc..baefb2b 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,7 @@
 - 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 @@
   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)