T
(def f-or (comp (partial some identity) vector))
Size: a a a
T
(def f-or (comp (partial some identity) vector))
T
DL
(update {:sent-cnt 2} :draft-cnt #(or % 0))
T
AK
(fn [x y] (or x y))
:)AK
AK
DL
DL
(defn fnor
([] nil)
([x & next]
(or x (apply fnor next))))
DL
T
DL
(merge-with #(if (nil? %1) %2 %1) {:sent-cnt 2} {:draft-cnt 0})
T
DL
T
OR
AC