diff --git a/doc/special.html b/doc/special.html index 525b0a56..1f35b01d 100644 --- a/doc/special.html +++ b/doc/special.html @@ -1,11 +1,10 @@ - +
+BigNum BigNum::operator+(BigNum). -
For the Python built-in functions pow() and
@@ -646,13 +645,13 @@ Note that "__rrpow__" is an extension not present in plain Python.
iteration idiom looks like
+ while in C++ one writesfor i in S: -
+for (iterator i = S.begin(), end = S.end(); i != end; ++i) -
One could try to wrap C++ iterators in order to carry the C++ idiom into Python. However, this does not work very well because