This function groups the names of the primitive types allowed for a slot into a multifield variable. A multifield of length zero is returned if an error occurs.
Syntax
(slot-types <class-name> <slot-name>)
Example
CLIPS> (clear) CLIPS> (defclass A (is-a USER) (slot y (type INTEGER LEXEME))) CLIPS> (slot-types A y) (INTEGER SYMBOL STRING) CLIPS>