EMA-XPS Online


IS-SAME

IS-SAME
=======


syntax: (is-same <object1> <object2>) ; Babylon Lisp
        (equal <object1> <object2>)   ; Common Lisp

This function compares both objects. It returns true,
when the objects are structurally similar. Numbers
(is-same works like '=') and characters will be
compared like eql would do. Symbols will be compared
like eq would do.
 
example:       >(is-same 'A 'A)
               T
               >(is-same 1 1.0)
               T


EMA-XPS Online