diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2021-03-15 19:12:02 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2021-03-15 19:12:02 +0300 |
| commit | afbd1f1c31299ef9e2040b41fce7a8546fce618d (patch) | |
| tree | 7d3afbb12a606c0b4a3855cfbd6ea41adbcbcac7 /init.fnl | |
| parent | 49d4cdcaedb4da26cf40a22f5bb8c1d6f5341c23 (diff) | |
fix: update test suite eq function builder
This really means that I need to externalize it into separate module
and just use everywhere, but Fennel doesn't yet feature stable way to
do it unfortunately
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. |