more intuitive left shift operator and corresponding right shift builtin function #413
Labels
breaking
Implementing this issue could cause existing code to no longer compile or have different behavior.
enhancement
Solving this issue will likely involve adding new logic or components to the codebase.
Milestone
<<
to@shlExact
. It's undefined behavior / debug safety crash to shift 1 bits out with@shlExact
.<<
can shift 1 bits out, no problem.<<
is what<<%
was. Remove<<%
.@shrExact
. It's undefined behavior / debug safety crash to shift 1 bits out with@shrExact
.Fixes an issue discovered when writing documentation (#367).
The text was updated successfully, but these errors were encountered: