getSG
getSG(g_obj S_prop) =>g_propValue
Description
Evaluates and then retrieves the value of the specified attribute or property. It is a lambda implementation of getSGq().
Arguments
|
Specifies the name of the attribute or property for which you want to retrieve the value |
Value Returned
Examples
In the following example, getSG() evaluates the tbl_list argument and then retrieves its value.
tbl_list = list( (Table 'a nil)
Table( 'b nil)
Table( 'c nil))
setSG( tbl_list 41 'x)
=> '(41 41 41)
getSG( tbl_list 'x)
Related Topics
Return to top