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
This usually enables subsequent simplification, e.g.,
((int)B) != 0
turns into
(B?1:0) != 0
and then into
B?1!=0:0!=0
and then into
B?true:false
which then turns into
B
0 commit comments