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
crucible-mir does not currently support the exact_div family of intrinsics, but it reasonably could. exact_div(x, y) behaves like integer division, except that it produces undefined behavior when x % y != 0 or y == 0 or x == T::MIN && y == -1. Among other uses, this is used in the implementation of array_chunks.
The text was updated successfully, but these errors were encountered:
crucible-mir
does not currently support theexact_div
family of intrinsics, but it reasonably could.exact_div(x, y)
behaves like integer division, except that it produces undefined behavior whenx % y != 0
ory == 0
orx == T::MIN && y == -1
. Among other uses, this is used in the implementation ofarray_chunks
.The text was updated successfully, but these errors were encountered: