#
string-comparison
String equality functions and comparisons in Common Lisp.
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