Function size() calculates the length of the list, namely, the number of elements in the list.
size()
Arguments:
Returns:
Example: Calculate the length of [1,2,3]
UQLreturn size([1,2,3])
return size([1,2,3])
Result3
3