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
Currently, the constraint generated as a precondition for xs will use Array#is and then separately check all valid elements (inbounds) are integers, and everything else (outbounds) is Void.
In fact, the outbounds check could be folded into Array#is. However, for reasons unknown, attempting to do this caused things to fail.
The text was updated successfully, but these errors were encountered:
Consider the following:
Currently, the constraint generated as a precondition for
xs
will useArray#is
and then separately check all valid elements (inbounds) are integers, and everything else (outbounds) isVoid
.In fact, the outbounds check could be folded into
Array#is
. However, for reasons unknown, attempting to do this caused things to fail.The text was updated successfully, but these errors were encountered: