| Applying science to business management |
  
length
Format: length( x )
Arguments: [any] x
Returns: (int) Length of a list, characters in a
string, or arguments in a function
Examples: length("Some
text") = 9
length([1,2,3,4,5]) = 5
f(x,y,z):=x*y*z
length(f) = 3
See Also: count, len
|