EMA-XPS Online


EQL

EQL
===

syntax: (eql <object1> <object2>)
                    ; Common Lisp
        (is-exactly <object1> <object2>)
                    ; Babylon Lisp

This function compares both objects. It returns T,
when the objects are eq, or when the objects are
numbers of the same type with the same value,
or when the objects represent the same character,
otherwise this function returns NIL.

example:       >(eql 1.0 1.0)
               T
               >(eql 1 1.0)
               NIL


EMA-XPS Online