ST
Size: a a a
ST
DL
(let [e (delay (expensive-call))]
(when (and (cheap-call) @e)
(some-fn @e)))
D
(let [e (delay (expensive-call))]
(when (and (cheap-call) @e)
(some-fn @e)))
ST
ST
D
(when (and (cheap-call) e)
(some-fn e)))
D
ST
(when (and (cheap-call) e)
(some-fn e)))
D
D
ST
D
ST
ST
D
ST
D
D
ST
ST