diff options
author | Stephan Hoyer <shoyer@gmail.com> | 2017-04-21 09:35:45 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2017-04-27 13:37:51 -0600 |
commit | 02600d38f3b2e70c3cd07770f93c3bac5255c8a6 (patch) | |
tree | 36cf7474c136258dd69ce3bd54dc67c54ff105cf /doc/source/reference/routines.other.rst | |
parent | 1e460b74bac7da0d9029b1fd414213f00bb66c9f (diff) | |
download | numpy-02600d38f3b2e70c3cd07770f93c3bac5255c8a6.tar.gz |
ENH: Add NDArrayOperatorsMixin mixin class.
This mixin class provides an easy way to implement arithmetic operators
that defer to __array_ufunc__ like numpy.ndarray in non-ndarray
subclasses.
Diffstat (limited to 'doc/source/reference/routines.other.rst')
-rw-r--r-- | doc/source/reference/routines.other.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/source/reference/routines.other.rst b/doc/source/reference/routines.other.rst index 5a5f2b818..45b9ac3d9 100644 --- a/doc/source/reference/routines.other.rst +++ b/doc/source/reference/routines.other.rst @@ -30,6 +30,13 @@ Memory ranges shares_memory may_share_memory +Array mixins +------------ +.. autosummary:: + :toctree: generated/ + + lib.mixins.NDArrayOperatorsMixin + NumPy version comparison ------------------------ .. autosummary:: |