MK
(cond-let
[x (get mymap :my-key)] (do-something x)
...)
Size: a a a
MK
(cond-let
[x (get mymap :my-key)] (do-something x)
...)
MB
MK
MB
MB
MB
MB
(->> nil
(if (= a b c) :false)
(do (println c))
...
)
MB
MB
MK
(if (= a b c) :false)MK
MB
MK
(if (= a b c) :false *** nil ***)MK
(do (println c) *** if ****)MK
MB
MK
(<<-
(if true 1)
(if true 2)
(if true 3)
4)
(if true
1
(if true
2
(if true
3
4)))