Describe the bug
When appending to a GArray using GArray.append() you need to supply an argument label like so
myArray.append(value: myValue) whereas a regular swift array does not require it
To Reproduce
Steps to reproduce the behavior:
Create a GArray and append to it using .append(myValue)
Compile
It will fail with missing argument label 'value:' in call
Expected behavior
the GArray.append() function should function like the regular swift array .append() which omits the argument label requirement
Describe the bug When appending to a GArray using GArray.append() you need to supply an argument label like so
myArray.append(value: myValue)
whereas a regular swift array does not require itTo Reproduce Steps to reproduce the behavior:
.append(myValue)
missing argument label 'value:' in call
Expected behavior the
GArray.append()
function should function like the regular swift array.append()
which omits the argument label requirement