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