funcool

A channel for discussing and asking questions about Funcool libraries https://github.com/funcool/
2016-06-26T19:30:15.000010Z

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"}]>
?