We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
threadlocal
1 parent 0c5b5ad commit bc21e22Copy full SHA for bc21e22
src/taoensso/encore.cljc
@@ -2466,10 +2466,11 @@
2466
#?(:clj
2467
(defmacro threadlocal
2468
"Returns `java.lang.ThreadLocal` with given initial value."
2469
- [& init-val]
2470
- `(ThreadLocal/withInitial
2471
- (reify java.util.function.Supplier
2472
- (get [_this#] (do ~@init-val))))))
+ ([ ] `(ThreadLocal.))
+ ([& init-val]
+ `(ThreadLocal/withInitial
+ (reify java.util.function.Supplier
2473
+ (get [_this#] (do ~@init-val)))))))
2474
2475
(comment
2476
(let [tl:sdf (threadlocal (SimpleDateFormat. "yyyy-MM-dd"))]
0 commit comments