2cc47c557b
This commit updates the benchmark results for various examples. The benchmark times and repeat counts have been adjusted to reflect current performance characteristics.
14 lines
251 B
Plaintext
14 lines
251 B
Plaintext
;; Benchmark: 889ns
|
|
;; Benchmark-Repeat: 2282
|
|
(do
|
|
(def pipe (fn [conf]
|
|
(do
|
|
(def [str s] conf)
|
|
(def [f ss] s)
|
|
["Symbol:" str "field:" f "id:" ss]
|
|
)
|
|
)
|
|
)
|
|
|
|
(pipe ["btc" [:close "cls"]])
|
|
) |