next up previous

12.16.3.1 Getting the List of Definstances

The function get-definstances-list returns a multifield value containing the names of all definstances constructs that are currently defined.

Syntax

(get-definstances-list)

Example

CLIPS> (clear)
CLIPS> (get-definstances-list)
()
CLIPS> (definstances foo)
CLIPS> (definstances bar)
CLIPS> (get-definstances-list)
(foo bar)
CLIPS>

12.16.3.2 Determining the Module in which a Definstances is Defined

This function returns the module in which the specified definstances name is defined.

Syntax

(definstances-module <definstances-name>)


next up previous