Re: [ANN] packthread 0.1.10

2018-04-04 Thread Matching Socks
Those are also good occasions for the standard-library *as->* user> (-> 4 (as-> x (let [n 2] (+ x n))) inc) 7 -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: [ANN] packthread 0.1.10

2018-04-03 Thread Alan Thompson
If you are interested in alternatives to `clojure.core/->`, you may be interested in the `it->` macro from the Tupelo library . Here is a summary: = Usage examples for

[ANN] packthread 0.1.10

2018-04-03 Thread Jason Felice
This release handles `if-some` and `when-some` and supports ClojureScript. packthread https://github.com/maitria/packthread "Heavy" threading macros. Why? Because every time you've wanted to: (-> 42 (let [x 79] (+ x)) inc) but clojure