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
Remove ALL support for unchecked arithmetic. We should never use it.
Update all arithmetic to use checked_sub, checked_add etc. names (don't overload + / -) to make it clear that we're using checked arithmetic (and so a search for only + or -, for example, should return only internal implementation code instead decimal types and no usage other than that).
The text was updated successfully, but these errors were encountered:
Looking through the codebase for unchecked arithmetic I still find quite a bit, e.g.:
We should:
checked_sub
,checked_add
etc. names (don't overload+
/-
) to make it clear that we're using checked arithmetic (and so a search for only+
or-
, for example, should return only internal implementation code instead decimal types and no usage other than that).The text was updated successfully, but these errors were encountered: