eqv? -- r7rs Definition
§

Kind
§

comparator;

Extended by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(eqv? obj_1 obj_2)

The eqv? procedure defines a useful equivalence relation on objects. Briefly, it returns #t if obj_1 and obj_2 are normally regarded as the same object. This relation is left slightly open to interpretation, but the following partial specification of eqv? holds for all implementations of Scheme.

The eqv? procedure returns #t if:

The eqv? procedure returns #f if:

(eqv? 'a 'a)                     ===>  #t
(eqv? 'a 'b)                     ===>  #f
(eqv? 2 2)                       ===>  #t
(eqv? 2 2.0)                     ===>  #f
(eqv? '() '())                   ===>  #t
(eqv? 100000000 100000000)       ===>  #t
(eqv? 0.0 +nan.0)                ===>  #f
(eqv? (cons 1 2) (cons 1 2))     ===>  #f
(eqv? (lambda () 1)
      (lambda () 2))             ===>  #f
(let ((p (lambda (x) x)))
  (eqv? p p))                    ===>  #t
(eqv? #f 'nil)                   ===>  #f

The following examples illustrate cases in which the above rules do not fully specify the behavior of eqv?. All that can be said about such cases is that the value returned by eqv? must be a boolean.

(eqv? "" "")             ===>  #unspecified
(eqv? '#() '#())         ===>  #unspecified
(eqv? (lambda (x) x)
      (lambda (x) x))    ===>  #unspecified
(eqv? (lambda (x) x)
      (lambda (y) y))    ===>  #unspecified
(eqv? 1.0e0 1.0f0)       ===>  #unspecified
(eqv? +nan.0 +nan.0)     ===>  #unspecified

Note that (eqv? 0.0 -0.0) will return #f if negative zero is distinguished, and #t if negative zero is not distinguished.

Since it is an error to modify constant objects (those returned by literal expressions), implementations may share structure between constants where appropriate. Thus the value of eqv? on constants is sometimes implementation-dependent.

(eqv? '(a) '(a))                 ===>  #unspecified
(eqv? "a" "a")                   ===>  #unspecified
(eqv? '(b) (cdr '(a b)))         ===>  #unspecified
(let ((x '(a)))
  (eqv? x x))                    ===>  #t

The above definition of eqv? allows implementations latitude in their treatment of procedures and literals: implementations may either detect or fail to detect that two procedures or two literals are equivalent to each other, and can decide whether or not to merge representations of equivalent objects by using the same pointer or bit pattern to represent both.

Note: If inexact numbers are represented as IEEE binary floating-point numbers, then an implementation of eqv? that simply compares equal-sized inexact numbers for bitwise equality is correct by the above definition.


The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§