module numpy.operators
¶
Source: stdlib/numpy/operators.codon
numpy.operators
¶Source: stdlib/numpy/operators.codon
ndarray[dtype,ndim]
@extend Class is extended to add given methods ¶__add__(self, other)
@inline Function always inlined ¶__radd__(self, other)
@inline Function always inlined ¶__iadd__(self, other)
@inline Function always inlined ¶__sub__(self, other)
@inline Function always inlined ¶__rsub__(self, other)
@inline Function always inlined ¶__isub__(self, other)
@inline Function always inlined ¶__mul__(self, other)
@inline Function always inlined ¶__rmul__(self, other)
@inline Function always inlined ¶__imul__(self, other)
@inline Function always inlined ¶__mod__(self, other)
@inline Function always inlined ¶__rmod__(self, other)
@inline Function always inlined ¶__imod__(self, other)
@inline Function always inlined ¶__pow__(self, other)
@inline Function always inlined ¶__rpow__(self, other)
@inline Function always inlined ¶__ipow__(self, other)
@inline Function always inlined ¶__truediv__(self, other)
@inline Function always inlined ¶__rtruediv__(self, other)
@inline Function always inlined ¶__itruediv__(self, other)
@inline Function always inlined ¶__floordiv__(self, other)
@inline Function always inlined ¶__rfloordiv__(self, other)
@inline Function always inlined ¶__ifloordiv__(self, other)
@inline Function always inlined ¶__lshift__(self, other)
@inline Function always inlined ¶__rlshift__(self, other)
@inline Function always inlined ¶__ilshift__(self, other)
@inline Function always inlined ¶__rshift__(self, other)
@inline Function always inlined ¶__rrshift__(self, other)
@inline Function always inlined ¶__irshift__(self, other)
@inline Function always inlined ¶__and__(self, other)
@inline Function always inlined ¶__rand__(self, other)
@inline Function always inlined ¶__iand__(self, other)
@inline Function always inlined ¶__or__(self, other)
@inline Function always inlined ¶__ror__(self, other)
@inline Function always inlined ¶__ior__(self, other)
@inline Function always inlined ¶__xor__(self, other)
@inline Function always inlined ¶__rxor__(self, other)
@inline Function always inlined ¶__ixor__(self, other)
@inline Function always inlined ¶__pos__(self)
@inline Function always inlined ¶__neg__(self)
@inline Function always inlined ¶__invert__(self)
@inline Function always inlined ¶__abs__(self)
@inline Function always inlined ¶__eq__(self, other)
@inline Function always inlined ¶__ne__(self, other)
@inline Function always inlined ¶__lt__(self, other)
@inline Function always inlined ¶__le__(self, other)
@inline Function always inlined ¶__gt__(self, other)
@inline Function always inlined ¶__ge__(self, other)
@inline Function always inlined ¶