module
Description
The module object contains a reference to all of the types and free functions that are defined within the module.
Type Tags
None
Object Value
Module objects do not have a value and it is an error to attempt to get or set it.
Properties
Property | Type | Description |
---|---|---|
firstfunction | function | Contains a reference to the first function in the ring of free functions. |
firsttype | type | Contains a reference to the first type object in the ring of type objects. |
next | module | Contains a reference to the next module in the ring of modules. Each C-language component normally represents a single module, as does each SIMPOL-language compiled library or program. |
type | type | Specifies the module type object. |
version | string | Contains the version string for the module. |