slotValue
slotValue(g_standardObjects_slotName) =>g_value
Description
Returns the value contained in the slot slotName of the given standardObject.
If there is no slot with the given name an error is signalled. This function bypasses any @reader generic function for the slot that you specified in the defclass declaration for the g_standardObject’s class.
Arguments
|
An instance of the standardObject class or a subclass of standardObject. |
|
|
The slot symbol used as the slot name in the |
Value Returned
|
Value contained in the slot s_slotName of the given standardObject. |
Examples
defclass( GeometricObject ()
(
( x @initarg x )
( y @initarg y )
)
)
=> t
Related Topics
Return to top