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, there are inc, dec, succ, pred for adding/subtracting an int. Internally, there are also functions for comparing with int32.
We should add more functions for working with BigInts and SomeIntegers, to avoid having to construct BigInts (and thus allocating) for small numbers. This would make sense for at least ==, <, +, -, *, div (in the second argument), mod (in the second argument).
The text was updated successfully, but these errors were encountered:
Currently, there are
inc
,dec
,succ
,pred
for adding/subtracting anint
. Internally, there are also functions for comparing withint32
.We should add more functions for working with
BigInt
s andSomeInteger
s, to avoid having to constructBigInt
s (and thus allocating) for small numbers. This would make sense for at least==
,<
,+
,-
,*
,div
(in the second argument),mod
(in the second argument).The text was updated successfully, but these errors were encountered: