arrayp
arrayp(g_value) =>t/nil
Description
Checks if an object is an array.
The suffix p is usually added to the name of a function to indicate that it is a predicate function.
Arguments
Value Returned
Examples
declare(x[10])
arrayp(x)
=> t
arrayp('x)
=> nil
Related Topics
Return to top