""" This type stub file was generated by pyright. """ from ._array_object import Array from typing import List, Optional, Tuple, Union def concat(arrays: Union[Tuple[Array, ...], List[Array]], /, *, axis: Optional[int] = ...) -> Array: """ Array API compatible wrapper for :py:func:`np.concatenate `. See its docstring for more information. """ ... def expand_dims(x: Array, /, *, axis: int) -> Array: """ Array API compatible wrapper for :py:func:`np.expand_dims `. See its docstring for more information. """ ... def flip(x: Array, /, *, axis: Optional[Union[int, Tuple[int, ...]]] = ...) -> Array: """ Array API compatible wrapper for :py:func:`np.flip `. See its docstring for more information. """ ... def permute_dims(x: Array, /, axes: Tuple[int, ...]) -> Array: """ Array API compatible wrapper for :py:func:`np.transpose `. See its docstring for more information. """ ... def reshape(x: Array, /, shape: Tuple[int, ...], *, copy: Optional[Bool] = ...) -> Array: """ Array API compatible wrapper for :py:func:`np.reshape `. See its docstring for more information. """ ... def roll(x: Array, /, shift: Union[int, Tuple[int, ...]], *, axis: Optional[Union[int, Tuple[int, ...]]] = ...) -> Array: """ Array API compatible wrapper for :py:func:`np.roll `. See its docstring for more information. """ ... def squeeze(x: Array, /, axis: Union[int, Tuple[int, ...]]) -> Array: """ Array API compatible wrapper for :py:func:`np.squeeze `. See its docstring for more information. """ ... def stack(arrays: Union[Tuple[Array, ...], List[Array]], /, *, axis: int = ...) -> Array: """ Array API compatible wrapper for :py:func:`np.stack `. See its docstring for more information. """ ...