Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more intuitive left shift operator and corresponding right shift builtin function #413

Closed
andrewrk opened this issue Aug 7, 2017 · 0 comments
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

Comments

@andrewrk
Copy link
Member

andrewrk commented Aug 7, 2017

  • Move << to @shlExact. It's undefined behavior / debug safety crash to shift 1 bits out with @shlExact. << can shift 1 bits out, no problem.
  • Now << is what <<% was. Remove <<%.
  • Add @shrExact. It's undefined behavior / debug safety crash to shift 1 bits out with @shrExact.

Fixes an issue discovered when writing documentation (#367).

@andrewrk andrewrk added 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. labels Aug 7, 2017
@andrewrk andrewrk added this to the 0.1.0 milestone Aug 7, 2017
@andrewrk andrewrk changed the title more intuitive left shift operator and corresponding right shift operator more intuitive left shift operator and corresponding right shift builtin function Aug 7, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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.
Projects
None yet
Development

No branches or pull requests

1 participant