File size: 149 Bytes
35cdf53 | 1 2 3 4 5 6 7 8 9 10 11 |
import numpy
def isin(
array: numpy.ndarray[numpy.int64],
test_elements: set[int],
invert: bool = ...,
) -> numpy.ndarray[bool]: ...
|
35cdf53 | 1 2 3 4 5 6 7 8 9 10 11 |
import numpy
def isin(
array: numpy.ndarray[numpy.int64],
test_elements: set[int],
invert: bool = ...,
) -> numpy.ndarray[bool]: ...
|