Open chorman0773 opened 2 months ago
This seems ready to stabilize.
@rfcbot merge
Team member @joshtriplett has proposed to merge this. The next step is review by the rest of the tagged team members:
No concerns currently listed.
Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up!
See this document for info about what commands tagged team members can give me.
I was going to do a stabilization report.
Just to be clear, my intention was to stabilize it both as a function and as a const fn
in one shot, so team should keep that in mind during the pFCP.
Feature gate:
#![feature(unbounded_shifts)]
This is a tracking issue for ACP 428.
This adds shifts functions to the integer types that ignore type bounds when shifting, with out of range values for the
rhs
yielding the result of shifting the entire value out (0
for left shifts, and unsigned right shifts, and either0
or-1
for signed right shifts).Public API
Steps / History
Unresolved Questions