Convert an array of tuples into a hash-map in Clojure August 7, 2023 by Tarik user=> (into {} [[:a 1] [:b 2]]) {:a 1, :b 2}