-
Notifications
You must be signed in to change notification settings - Fork 6
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
add support for sbyte, ushort, uint, ulong and nuint #18
base: master
Are you sure you want to change the base?
Conversation
I had to introduct a new flag |
I had to add some casts to the math operators because some types like |
@koryphaee Looks good, Note I want to rethink those template styles to reduce the "copy/paste" for new types in the future
The only request I have is that it would be better to merge the definitions of those bools enum NumericKind {
None,
Signed,
Unsigned
} |
Will do 👍 |
pushed the enum change |
I basically just copy-pasted the code for the existing types including tests. These commits look very similar to those adding short, byte etc. (8247470).