Nim icon indicating copy to clipboard operation
Nim copied to clipboard

Allow `array[..., void]`

Open arnetheduck opened this issue 1 year ago • 3 comments

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

arnetheduck avatar May 01 '24 06:05 arnetheduck

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...

litlighilit avatar May 01 '24 16:05 litlighilit

As a variable of void is invalid, an array of void cannot be valid...

I think @arnetheduck meant parameter

This is valid Nim and compiles

proc foo(v: void) =
  echo "compiles"
  
foo()

mratsim avatar May 04 '24 08:05 mratsim

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.

metagn avatar May 04 '24 23:05 metagn