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
In comparisons and binary operators with UInt64 and BigUInt, bool type can be supported as the other operand, treating True as 1 and False as 0. This is consistent with Python types such as a int:
assert (1+True) ==2
The text was updated successfully, but these errors were encountered:
In comparisons and binary operators with
UInt64
andBigUInt
,bool
type can be supported as the other operand, treatingTrue
as1
andFalse
as0
. This is consistent with Python types such as aint
:The text was updated successfully, but these errors were encountered: