File manager - Edit - /usr/local/lib/python3.9/dist-packages/pandas/core/_numba/kernels/shared.py
Back
from __future__ import annotations from typing import TYPE_CHECKING import numba if TYPE_CHECKING: import numpy as np @numba.jit( # error: Any? not callable numba.boolean(numba.int64[:]), # type: ignore[misc] nopython=True, nogil=True, parallel=False, ) def is_monotonic_increasing(bounds: np.ndarray) -> bool: """Check if int64 values are monotonically increasing.""" n = len(bounds) if n < 2: return True prev = bounds[0] for i in range(1, n): cur = bounds[i] if cur < prev: return False prev = cur return True
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.78 |
proxy
|
phpinfo
|
Settings