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
To evaluate if a value is within bounds, we only need to the underlying type to support __lt__. This is also what Python built-ins do (list.sort and sorted), so it will be more intuitive to users.
To evaluate if a value is within bounds, we only need to the underlying type to support
__lt__. This is also what Python built-ins do (list.sortandsorted), so it will be more intuitive to users.