printstruct
printstruct(g_object) =>t
Description
Prints the contents of an association table or defstruct in a tabular format.
For debugging purposes, the printstruct function prints the contents of a structure in a readable form. It recursively prints nested structures.
Arguments
Value Returned
Example
defstruct(myStruct slot1 slot2) => t
struct = make_myStruct(?slot1 "one" ?slot2 'two)=> array[4]:3872800
printstruct(struct)
Structure of type myStruct:
slot1: "one"
slot2: two => t
Related Topics
Return to top