Replies: 4 comments 5 replies
-
Actually, the only way to add the types with such names would be through adding them to the reserved names, which I am not keen on. This would just add another difference between libraries, some libraries that adhere to char/int/long style and others that use bit named types. I originally thought to add all of those aliases (it used to be in the docs), but the problem with different styles and annoying mixed usage made me remove them. It's one or the other. |
Beta Was this translation helpful? Give feedback.
-
In addition, for (i32 i = 32; i > 0; i--) { ... }
for (s32 i = 32; i > 0; i--) { ... } |
Beta Was this translation helpful? Give feedback.
-
Also would be nice to have |
Beta Was this translation helpful? Give feedback.
-
Seems like a rust vibe. Personally, I prefer int, uint, ... They have fixed sizes and everything can be checked in docs or manually (I mean their sizes). |
Beta Was this translation helpful? Give feedback.
-
Of course, these types can be defined in stdint(stdfloat/stdtypes/etc.).c3.
But maybe add them to built-in types?
34 votes ·
Beta Was this translation helpful? Give feedback.
All reactions