Skip to content
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

arrays.nim: added Variant varargs type converter for newArray #100

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

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