Currently, there is no unambiguous solution for passing empty Array of X (where X is a different type than 64-bit Floating Point) as a sequence parameter. If we use {} it is assumed to be of type 64-bit Floating Point. To have an empty Array of Strings we can use ambigues Split("",""). I have no idea how to pass e.g. empty Array of Signed 64-bit Integer without creating empty variables.
It would useful to have Empty Array Literals of a particular type e.g.:
{} - default
{}i64 - for Signed 64-bit Integer
{}ui64 - for Unsigned 64-bit Integer
{}s - for String
{}b - for Boolean
{}r - for Object Reference
{}c - for Container
{}TYPE_NAME - for type definition where TYPE_NAME is type definition name; e.g. Path.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.