Skip to content

Conversation

geekrelief
Copy link
Contributor

poolarrays.nim: replaced empty constructor with one taking varargs[DataT]

poolarrays.nim: replaced empty constructor with one taking varargs[DataT]
@@ -21,7 +21,7 @@ proc newArray*(arr: GodotArray): Array {.inline.} =

import variants

proc newArray*(s: varargs[Variant]): Array =
proc newArray*(s: varargs[Variant], `newVariant`): Array =
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does this syntax do? I think it's not a part of the older Nim version that we'd like to keep the library compatible with.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://nim-lang.github.io/Nim/manual.html#types-varargs It's a type conversion parameter. Anything not a Variant passed into varargs will have newVariant applied to it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants