@@ -49,10 +49,10 @@ Example Usage
49
49
``` clojure
50
50
(use 'clojure.core.unify)
51
51
52
- (unifier '((?a * ?x ** 2 ) + (?b * ?x) + ?c)
52
+ (unifier '((?a * ?x ** 2 ) + (?b * ?x) + ?c)
53
53
'(?z + (4 * 5 ) + 3 ))
54
54
55
- ; => ((?a * 5 ** 2) + (4 * 5) + 3)
55
+ ; => ((?a * 5 ** 2) + (4 * 5) + 3)
56
56
```
57
57
58
58
Refer to docstrings in the ` clojure.core.unify ` namespace.
@@ -70,18 +70,21 @@ Developer Information
70
70
Change Log
71
71
====================
72
72
73
+ * Release 0.7.0 in progress
74
+ - Add ClojureScript support
75
+ - Drop Clojure 1.6 and 1.7 support
73
76
* Release 0.6.0 on 2024.02.19
74
77
- Update parent pom version
75
78
* Release 0.5.7 on 2016.07.25
76
79
- Fixed macro that produced invalid fn names
77
80
* Release 0.5.6 on 2013.03.07
78
- - Removed nil bindings
81
+ - Removed nil bindings
79
82
* Release 0.5.5 on 2013.01.25
80
83
- Exposed ` lvar? ` function
81
84
- Added ` extract-lvars ` function
82
85
- Exposed ` flatten-bindings ` function
83
86
* Release 0.5.4 on 2013.01.24
84
- - Added 3-arg version of ` unify ` and ` unify- ` allowing an
87
+ - Added 3-arg version of ` unify ` and ` unify- ` allowing an
85
88
additional environment map.
86
89
* Release 0.5.3 on 2012.05.25
87
90
- Added ` variable? ` function
0 commit comments