Fork me on GitHub
#funcool
<
2016-06-26
>
nha19:06:15

Starting out with cats.. Is there a shorter way than mappend to do something like :

(m/mvector (maybe/just {:ok 1})
           (maybe/nothing)
           (maybe/just {:a "a"})
           (maybe/nothing))
            ;; #<Just [{:ok 1} {:a "a"}]>
?