vectorp
vectorp(g_value) =>t/nil
Description
Checks whether the specified object is a vector. The behavior of this SKILL function is the same as arrayp.
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