You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: Simplify and optimize interpolate implementation (#8397)
## Summary
The previous implementation unnecessarily used the `O(n)` loop to find
the current interpolation value instead of using a simple binary search.
It also Used unnecessary check if length of the input range is greater
than 2 as this case doesn't have to be handled separately.
0 commit comments