""" This type stub file was generated by pyright. """ from ._array_object import Array def abs(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.abs `. See its docstring for more information. """ ... def acos(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.arccos `. See its docstring for more information. """ ... def acosh(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.arccosh `. See its docstring for more information. """ ... def add(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.add `. See its docstring for more information. """ ... def asin(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.arcsin `. See its docstring for more information. """ ... def asinh(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.arcsinh `. See its docstring for more information. """ ... def atan(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.arctan `. See its docstring for more information. """ ... def atan2(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.arctan2 `. See its docstring for more information. """ ... def atanh(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.arctanh `. See its docstring for more information. """ ... def bitwise_and(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.bitwise_and `. See its docstring for more information. """ ... def bitwise_left_shift(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.left_shift `. See its docstring for more information. """ ... def bitwise_invert(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.invert `. See its docstring for more information. """ ... def bitwise_or(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.bitwise_or `. See its docstring for more information. """ ... def bitwise_right_shift(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.right_shift `. See its docstring for more information. """ ... def bitwise_xor(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.bitwise_xor `. See its docstring for more information. """ ... def ceil(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.ceil `. See its docstring for more information. """ ... def conj(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.conj `. See its docstring for more information. """ ... def cos(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.cos `. See its docstring for more information. """ ... def cosh(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.cosh `. See its docstring for more information. """ ... def divide(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.divide `. See its docstring for more information. """ ... def equal(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.equal `. See its docstring for more information. """ ... def exp(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.exp `. See its docstring for more information. """ ... def expm1(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.expm1 `. See its docstring for more information. """ ... def floor(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.floor `. See its docstring for more information. """ ... def floor_divide(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.floor_divide `. See its docstring for more information. """ ... def greater(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.greater `. See its docstring for more information. """ ... def greater_equal(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.greater_equal `. See its docstring for more information. """ ... def imag(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.imag `. See its docstring for more information. """ ... def isfinite(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.isfinite `. See its docstring for more information. """ ... def isinf(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.isinf `. See its docstring for more information. """ ... def isnan(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.isnan `. See its docstring for more information. """ ... def less(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.less `. See its docstring for more information. """ ... def less_equal(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.less_equal `. See its docstring for more information. """ ... def log(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.log `. See its docstring for more information. """ ... def log1p(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.log1p `. See its docstring for more information. """ ... def log2(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.log2 `. See its docstring for more information. """ ... def log10(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.log10 `. See its docstring for more information. """ ... def logaddexp(x1: Array, x2: Array) -> Array: """ Array API compatible wrapper for :py:func:`np.logaddexp `. See its docstring for more information. """ ... def logical_and(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.logical_and `. See its docstring for more information. """ ... def logical_not(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.logical_not `. See its docstring for more information. """ ... def logical_or(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.logical_or `. See its docstring for more information. """ ... def logical_xor(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.logical_xor `. See its docstring for more information. """ ... def multiply(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.multiply `. See its docstring for more information. """ ... def negative(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.negative `. See its docstring for more information. """ ... def not_equal(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.not_equal `. See its docstring for more information. """ ... def positive(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.positive `. See its docstring for more information. """ ... def pow(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.power `. See its docstring for more information. """ ... def real(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.real `. See its docstring for more information. """ ... def remainder(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.remainder `. See its docstring for more information. """ ... def round(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.round `. See its docstring for more information. """ ... def sign(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.sign `. See its docstring for more information. """ ... def sin(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.sin `. See its docstring for more information. """ ... def sinh(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.sinh `. See its docstring for more information. """ ... def square(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.square `. See its docstring for more information. """ ... def sqrt(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.sqrt `. See its docstring for more information. """ ... def subtract(x1: Array, x2: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.subtract `. See its docstring for more information. """ ... def tan(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.tan `. See its docstring for more information. """ ... def tanh(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.tanh `. See its docstring for more information. """ ... def trunc(x: Array, /) -> Array: """ Array API compatible wrapper for :py:func:`np.trunc `. See its docstring for more information. """ ...