Clojure transients is a great way to optimize performance sensitive code without leaving familiar Clojure world. In this post we show how to use them to boost performance.
Continue reading Clojure transients – fast mutations in persistent worldperformance
Insertion sort in Clojure can be implemented in different ways. In this post we compare implementations with and without Clojure transients.
Continue reading Insertion Sort in Clojure