You are viewing documentation for version v1.5.x. View latest version.
length determines the length of a given list, map, or tuple.
length
If given a list, map, or tuple, the result is the number of elements in that collection.
> length([])0> length(["a", "b"])2> length({"a" = "b"})1
On this page: