neovim/typings/numpy/array_api/_indexing_functions.pyi

15 lines
307 B
Python
Raw Normal View History

2023-10-24 22:54:55 -04:00
"""
This type stub file was generated by pyright.
"""
from ._array_object import Array
def take(x: Array, indices: Array, /, *, axis: Optional[int] = ...) -> Array:
"""
Array API compatible wrapper for :py:func:`np.take <numpy.take>`.
See its docstring for more information.
"""
...