#

equality

Equality predicates (eq, eql, equal, equalp) and their semantics.

ProgrammingWhy member behaves differently in FiveAM tests (SBCL)

SBCL may intern string literals when compiling, so (member "foo" '("foo") :test #'eql) can match by identity. Use equal or string= for consistent results.

1 answer 1 view