diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-08-15 11:31:39 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-08-25 20:09:42 -0600 |
commit | 09a750c61e816ce16927c5621e97803f542dbf38 (patch) | |
tree | 8979c8765dc586e37c535887807d1600539f32d5 /doc/source/reference/c-api.iterator.rst | |
parent | 02b1c207cae97b0c0504107bf081cd0ccd3752d7 (diff) | |
download | numpy-09a750c61e816ce16927c5621e97803f542dbf38.tar.gz |
DOC: nditer: Add links to the nditer introductory doc to make it more discoverable
Diffstat (limited to 'doc/source/reference/c-api.iterator.rst')
-rw-r--r-- | doc/source/reference/c-api.iterator.rst | 5 |
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 ---------------------------------------- |