EMA-XPS Online


TYPE-OF

TYPE-OF
=======

syntax: (type-of <object>)      ; Common Lisp command
        (the-type-of <object>)  ; Babylon Lisp command

This function returns the type of which the object
is a member.

example:       >(type-of '(1 2 3))
               CONS


EMA-XPS Online