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