ArrayLength
Alias:ArrayLength
, Length
Output:Int32
Counts the elements in an array or entities in an entity stream.
Parameter | Type | Required | Position | Summary |
---|---|---|---|---|
Array Of | array<T> | ✔ | 1 | The array to count. |
Examples​
Example 1​
SCL​
ArrayLength [1,2,3]
Expected Output​
3
Example 2​
SCL​
Length Of: [1,2,3]
Expected Output​
3