Skip to main content
Version: v0.19.0-alpha 🚧

ArrayLength

Alias:ArrayLength, Length

Output:Int32

Counts the elements in an array or entities in an entity stream.

ParameterTypeRequiredPositionSummary
Array
Of
array<T>✔1The 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