diff options
Diffstat (limited to 'init.fnl')
| -rw-r--r-- | init.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -960,7 +960,7 @@ functions also reuse this indexing method, such as sets." :else false)) ([x y & xs] - (reduce #(and $1 $2) (eq x y) (mapv #(eq x $) xs))))) + (and (eq x y) (apply eq x xs))))) (set core.eq (with-meta eq {:fnl/docstring "Deep compare values. |