;; Benchmark: Record Destructuring Performance ;; This test calls a function that destructures a record ;; Current implementation is now zero-allocation for destructuring. ;; Output: 3 ;; Benchmark: 698ns ;; Benchmark-Repeat: 2875 (do (def process (fn [[x y]] (+ x y))) (process {:a 1 :b 2}) )