eq?
-- r7rs
Definition comparator
;
equivalent-by-identity?
(from vonuvoli
);Procedure variants:
((any any) -> (boolean))
scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(eq? obj_1 obj_2)
A predicate is a procedure that always returns a boolean value (
#t
or#f
). An equivalence predicate is the computational analogue of a mathematical equivalence relation; it is symmetric, reflexive, and transitive.Of the equivalence predicates described in this section,
eq?
is the finest or most discriminating,equal?
is the coarsest, andeqv?
is slightly less discriminating thaneq?
.The
eq?
procedure is similar toeqv?
except that in some cases it is capable of discerning distinctions finer than those detectable byeqv?
. It must always return#f
wheneqv?
also would, but may return#f
in some cases whereeqv?
would return#t
.On symbols, booleans, the empty list, pairs, and records, and also on non-empty strings, vectors, and bytevectors,
eq?
andeqv?
are guaranteed to have the same behavior. On procedures,eq?
must return true if the arguments' location tags are equal. On numbers and characters,eq?
's behavior is implementation-dependent, but it will always return either true or false. On empty strings, empty vectors, and empty bytevectors,eq?
may also behave differently fromeqv?
.(eq? 'a 'a) ===> #t (eq? '(a) '(a)) ===> #unspecified (eq? (list 'a) (list 'a)) ===> #f (eq? "a" "a") ===> #unspecified (eq? "" "") ===> #unspecified (eq? '() '()) ===> #t (eq? 2 2) ===> #unspecified (eq? #\A #\A) ===> #unspecified (eq? car car) ===> #t (let ((n (+ 2 3))) (eq? n n)) ===> #unspecified (let ((x '(a))) (eq? x x)) ===> #t (let ((x '#())) (eq? x x)) ===> #t (let ((p (lambda (x) x))) (eq? p p)) ===> #t
Rationale: It will usually be possible to implement
eq?
much more efficiently thaneqv?
, for example, as a simple pointer comparison instead of as some more complicated operation. One reason is that it is not always possible to computeeqv?
of two numbers in constant time, whereaseq?
implemented as pointer comparison will always finish in constant time.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.