Nim
Nim copied to clipboard
Allow `array[..., void]`
Summary
Extend void handling to also allow array[..., void].
Description
In https://github.com/nim-lang/Nim/issues/23419#issuecomment-2037606887, it is noted that an array of void is not allowed - this unnecessarily burdens generic code since array of void gracefully can be handled the same way as an ordinary void type.
Since void has no data, it follows naturally that array of void also doesn't have any data. We allow void variables, so we should also allow array-of-void variables - they are useful to simplify generic code and can be used as compile-time information carriers for macros, dsl etc.
Alternatives
No response
Examples
No response
Backwards Compatibility
No response
Links
No response
Currently void is only valid for generic argument, function return type, etc, but not for any concrete type.
As a variable of void is invalid, an array of void cannot be valid...
As a variable of
voidis invalid, an array ofvoidcannot be valid...
I think @arnetheduck meant parameter
This is valid Nim and compiles
proc foo(v: void) =
echo "compiles"
foo()
tuple[] serves a similar purpose but it doesn't get erased in the backend and it doesn't have a special meaning like void that makes it independent from the type system. Some discussion on changing void is on https://github.com/nim-lang/RFCs/issues/508 and https://github.com/nim-lang/Nim/pull/20609.