tupelo icon indicating copy to clipboard operation
tupelo copied to clipboard

Tupelo: Clojure With A Spoonful of Honey

Results 7 tupelo issues
Sort by recently updated
recently updated
newest added

That would enable to replicate `spy>` and `spy>>` in postmortem.core: https://github.com/athos/Postmortem

`tupelo.forest` is currently only available in Clojure. It would also be useful to have it in ClojureScript.

https://github.com/cloojure/tupelo/blob/63a34492bdb2d1f7a94050c653ee233ec1211380/src/cljc/tupelo/core.cljc#L1207 See https://cljs.github.io/api/cljs.core/MapEntry Currently, the missing third argument gives a warning when compiled: ``` ------ WARNING #1 - :fn-arity -------------------------------------------------- Resource: tupelo/core.cljc:1200:12 Wrong number of args (2) passed to cljs.core.MapEntry...

Loading a namespace that requires `tupelo.core` results in an arity error for me. CLJS Version is 1.10.597, the most recent, tupelo is 0.9.201. From what I can see [here](https://cljs.github.io/api/cljs.core/MapEntry), MapEntry...

Tupelo contains a lot of useful but unrelated functionality. This seems at first glance to contradict the culture of small single-purpose tools that pervades the Clojure world. Would you consider...

(ns tupelo-bug.core (:use [tupelo.core])) (defn the-bug [] (glue ['abc 'def] [4] [3 4]) ; works - so symbols from tupelo.core are available (->vector 1 (unwrap [2 3 4 5 6...