[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: EQP/EQL
- To: GLS at MIT-MC, LISP-FORUM at MIT-MC, Scott.Fahlman at CMU-10A
- Subject: Re: EQP/EQL
- From: Robert W. Kerns <RWK at MIT-MC>
- Date: Thu ,11 Dec 80 15:57:00 EDT
Better definition:
(DEFUN EQL (X Y)
(OR (EQ X Y)
(AND (NUMBERP X)
(EQUAL X Y))))
Remember, in our dialect, at least, EQUAL doesn't consider 2.0 and 2 to
be equal. Does INTERLISP? If not, then their EQP isn't even a 'Smart EQ'
directly between EQ and EQUAL on the spectrum.