Function: sxhash-equal
sxhash-equal is a function defined in fns.c.
Signature
(sxhash-equal OBJ)
Documentation
Return an integer hash code for OBJ suitable for equal.
If (equal A B), then (= (sxhash-equal A) (sxhash-equal B)).
Hash codes are not guaranteed to be preserved across Emacs sessions.
Probably introduced at or before Emacs version 26.1.
Aliases
Source Code
// Defined in /usr/src/emacs/src/fns.c
{
return hashfn_equal (obj, NULL);
}