-
Notifications
You must be signed in to change notification settings - Fork 92
[Version 9.0] Feature support for native sized integers (nint, and nuint)
#1457
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
Draft
BillWagner
wants to merge
26
commits into
draft-v9
Choose a base branch
from
v9-native-sized-integers
base: draft-v9
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
2eaa27f
Add support for native-sized integers
RexJaeschke 8df9554
missing back tick
BillWagner 8393fd2
Add entry for nint/nuint
RexJaeschke 91861a9
Apply suggestions from code review
RexJaeschke ebf94db
Apply suggestions from code review
RexJaeschke 4d7b6cb
address open comments.
BillWagner 6672808
Address current comments.
BillWagner 0c4c32f
Edit pass on `nint`
BillWagner af72fb0
Apply suggestions from code review
BillWagner 6ea9806
respond to first round feedback.
BillWagner a0dfd6c
Rework Types.md for nint
BillWagner 6290006
Add predefined operators
BillWagner ba32264
Further edits.
BillWagner 2f92f93
one more edit
BillWagner 1b6c859
Apply suggestions from code review
BillWagner 54340e2
Update standard/conversions.md
BillWagner 4ef33ef
lint
BillWagner e82a3d5
Apply suggestions from code review
BillWagner a526a64
Apply suggestion from @Nigel-Ecma
BillWagner 35e4d8b
remove extra note.
BillWagner c52e98e
Address operator feedback
BillWagner 68e5d69
Add additional promotions
BillWagner 3c2b622
Constant expression fix
BillWagner f880b27
misc formatting fixes
BillWagner 41fc22e
remove redundant conversions
BillWagner 0bda104
em-dashes to hyphen-minus
BillWagner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What was the reason to have listed
intanduintin the first place? They fall under "can be implicitly converted tolong/ulong."There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Completeness for one. And, to make it clear that in those cases, no conversion is required.