-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Open
Labels
Description
Deprecate searchsorted(a, v) in util/array.py and replace it with np.searchsorted(a, v, side='right').
(Numba was not supporting the side keyword argument when this function was implemented.)
- Replace any use of
util.array.searchsortedwithnp.searchsorted(a, v, side='right').
(⚡️ Speed up functiondrawby 390% #811 Is such an example.) - Rewrite
searchsortedinutil/array.pyso that it simply returnsnp.searchsorted(a, v, side='right'), emittingDeprecationWarning.
(Remove this function in some future release.) - Rewrite the docstring of
searchsortedinutil/array.pyaccordingly.
misrasaurabh1