summaryrefslogtreecommitdiff
path: root/doc/source/reference/c-api.iterator.rst
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2011-08-25 20:20:49 -0600
committerCharles Harris <charlesr.harris@gmail.com>2011-08-25 20:20:49 -0600
commit4fb84e7a220e39c34e5253202730733d8151bb9c (patch)
treeac8c3f6bbf73a8ccd3b4c106d5793bb9c958d022 /doc/source/reference/c-api.iterator.rst
parente53c0558424f3dcdf160036f8a7fb4ecab04470f (diff)
parente7786bd2191d2880344d342b5c56ca73931c1286 (diff)
downloadnumpy-4fb84e7a220e39c34e5253202730733d8151bb9c.tar.gz
Merge branch 'pull-138'
* pull-138: DOC: nditer: Add details about why 'readonly' is the operand default DOC: nditer: Tweaks to the tutorial based on feedback from Chris DOC: nditer: Add links to the nditer introductory doc to make it more discoverable DOC: nditer: Finish up the nditer walkthrough with a Cython example DOC: nditer: Add tutorial-style material covering more than one operand DOC: nditer: Write tutorial-style introduction covering single-array iteration
Diffstat (limited to 'doc/source/reference/c-api.iterator.rst')
-rw-r--r--doc/source/reference/c-api.iterator.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/source/reference/c-api.iterator.rst b/doc/source/reference/c-api.iterator.rst
index 78d068192..01385acfd 100644
--- a/doc/source/reference/c-api.iterator.rst
+++ b/doc/source/reference/c-api.iterator.rst
@@ -23,6 +23,11 @@ branch, so will integrate naturally into the refactored code base.
The iterator is named ``NpyIter`` and functions are
named ``NpyIter_*``.
+There is an :ref:`introductory guide to array iteration <arrays.nditer>`
+which may be of interest for those using this C API. In many instances,
+testing out ideas by creating the iterator in Python is a good idea
+before writing the C iteration code.
+
Converting from Previous NumPy Iterators
----------------------------------------