summaryrefslogtreecommitdiff
path: root/doc/source/reference/c-api.iterator.rst
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Fix typos in docsDongjoon Hyun2016-01-251-1/+1
|
* DOC: Add warning that the InnerStridesArray may change.Sebastian Berg2015-08-261-0/+3
| | | | | It may be that you can say that it cannot happen when grow inner is not enabled as well.
* DOC: Fix outdated sphinx directives.Charles Harris2015-07-011-200/+200
| | | | | | | Examples :cdata: -> :c:data: .. cfunction:: -> .. c:function::
* DOC: NpyIter chapter: move table to bottomLars Buitinck2014-11-201-45/+45
| | | | ... so that the example is now the first thing seen after the (short) intro.
* DOC: fix example in NpyIter docs that didn't compileLars Buitinck2014-11-191-1/+2
|
* DOC: iterator: don't bother users with NumPy development detailsLars Buitinck2014-11-191-2/+0
|
* BUG: Delay npyiter size check when size may changeSebastian Berg2014-03-121-5/+17
| | | | | | | | | | | | | When a multi index is tracked and RemoveAxis can be called, the size of the iterator may still change. This was causing failures for example for the SVD, because the gufunc machinery requires a temporarily larger iterator for output allocation. Thanks to Jaime (jaime.frio@gmail.com) for noting that this is plausible since the size check can be delayed pretty ok up until GetIterNext (or similar functions). Closes gh-4442
* DOC fix incorrect variable name in examplejnothman2014-03-041-1/+1
| | | Undefined `dataaddr` -> `dataptrarray`
* DOC: fix signature of NpyIter_GetIterNext in capi docJulian Taylor2013-10-051-1/+1
|
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-4/+4
| | | | Now is as good a time as any with open PR's at a low.
* DOC: Add documentation clarifying the use of oa_ndimSebastian Berg2013-03-031-3/+8
|
* DOC: Remove documentation of non-existing advanced iter NA flags.Sebastian Berg2013-03-011-29/+0
|
* DOC: missingdata: Add example of a C-API function supporting NA masksMark Wiebe2011-08-271-3/+4
|
* DOC: missingdata: Documenting C API for NA-masked arraysMark Wiebe2011-08-271-0/+25
|
* DOC: nditer: Document NpyIter_IsFirstVisit functionMark Wiebe2011-08-271-0/+22
|
* DOC: missingdata: Add some NA mask info to the documentationMark Wiebe2011-08-271-0/+33
|
* DOC: nditer: Add links to the nditer introductory doc to make it more ↵Mark Wiebe2011-08-251-0/+5
| | | | discoverable
* DOC: core: Document the mask-based nditer flags and new inline mask functionsMark Wiebe2011-07-111-0/+40
|
* API: Rename 'niter' to 'nop' in the nditerMark Wiebe2011-03-171-24/+24
| | | | | | This name was chosen partially based on the previous multi-iter, which stored an array of iterators, so 'niter' made sense. In the new nditer, it doesn't, and 'nop' for number of operands seems better.
* API: Rename 'coords' to 'multi-index' in ravel_coords and iterator APIMark Wiebe2011-03-141-34/+34
|
* STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOPMark Wiebe2011-03-141-22/+23
| | | | | It's a little bit shorter, and more intuitively expresses what the flag does.
* DOC: Document constructor API change, and fill in some more missing ↵Mark Wiebe2011-03-131-48/+87
| | | | documentation
* DOC: Replace 'deprecated' with 'superceded' in a few places, fix a typo.Mark Wiebe2011-03-101-1/+1
|
* DOC: Add some missing documentation, hyper-link the iterator documentationMark Wiebe2011-03-101-146/+189
|
* API: Rename the iterator function pointer types to be more consistent with ↵Mark Wiebe2011-03-101-8/+8
| | | | | | | NumPy convention 'NpyIter_IterNext_Fn' -> 'NpyIter_IterNextFunc *' 'NpyIter_GetCoords_Fn' -> 'NpyIter_GetCoordsFunc *'
* API: Change iterator API parameters ndim and niter from npy_intp to intMark Wiebe2011-03-101-18/+18
| | | | | These parameters are never large, so it's better to use a straight int instead of npy_intp, consistent with ndim in PyArrayObject as well.
* DOC: Copy iterator API documentation from the NEPMark Wiebe2011-03-051-0/+1101