module documentation

Mixin classes for custom array types that don't inherit from ndarray.
Class ​NDArray​Operators​Mixin Mixin defining all operator special methods using __array_ufunc__.
Function ​_binary​_method Implement a forward binary method with a ufunc, e.g., __add__.
Function ​_disables​_array​_ufunc True when __array_ufunc__ is set to None.
Function ​_inplace​_binary​_method Implement an in-place binary method with a ufunc, e.g., __iadd__.
Function ​_numeric​_methods Implement forward, reflected and inplace binary methods with a ufunc.
Function ​_reflected​_binary​_method Implement a reflected binary method with a ufunc, e.g., __radd__.
Function ​_unary​_method Implement a unary special method with a ufunc.
def _binary_method(ufunc, name):
Implement a forward binary method with a ufunc, e.g., __add__.
def _disables_array_ufunc(obj):
True when __array_ufunc__ is set to None.
def _inplace_binary_method(ufunc, name):
Implement an in-place binary method with a ufunc, e.g., __iadd__.
def _numeric_methods(ufunc, name):
Implement forward, reflected and inplace binary methods with a ufunc.
def _reflected_binary_method(ufunc, name):
Implement a reflected binary method with a ufunc, e.g., __radd__.
def _unary_method(ufunc, name):
Implement a unary special method with a ufunc.