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)).

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 hashfn_eql (obj, NULL);
}