ref: 12c9d2fc728b51aa1eb9a70d0d331eb9464912d9
dir: /src/equal.h/
#pragma once // comparable with == #define eq_comparable(a, b) (!(((a)|(b))&1)) #define eq_comparablep(a) (!((a)&1)) /* mag: UNUSED? */ int equal_lispvalue(sl_v a, sl_v b); uintptr hash_lispvalue(sl_v a); sl_v sl_compare(sl_v a, sl_v b, bool eq); int numeric_compare(sl_v a, sl_v b, bool eq, bool eqnans, bool typeerr); void comparehash_init(void);