tablep
tablep(g_object) =>t/nil
Description
Checks if an object is an association table.
The suffix p is usually added to the name of a function to indicate that it is a predicate function.
Arguments
Value Returned
Examples
myTable = makeTable("atable1" 0)
=> table:atable1
tablep(myTable)
=> t
tablep(9)
=> nil
Related Topics
Return to top