contextual
contextual copied to clipboard
Data structures that know their place in the world
Do you have plans to update this library to be functional with latest versions of Clojure and Clojurescript? Would be highly appreciated, thank you.
Projects that included previous versions of `contextual` fail on JDK 11 (possibly other post-8 versions) with errors like: ``` Caused by: java.lang.IllegalArgumentException: Must hint overloaded method: toArray at clojure.lang.Compiler$NewInstanceMethod.parse(Compiler.java:8496) at...
I discovered this library by reading your source for quantum tic-tac-toe. It is obvious that this is wonderful tech, a seamless way to handle portions of state in reactive apps...
Following call throws the error: ```clojure (let [x (contextual/contextualize {:a [{:b {:c 1}} {:x 3}]})] (walk/postwalk (fn [y] (when (contextual/contextualizable? y) (println (contextual/context y))) y) x)) ``` ``` #object[Error Error:...