how would you implement a catMaybes for Data.Set ?
I came up with:
import qualified Data.Set as Set
import qualified Data.Maybe as Maybe
setCatMaybes a = Set.map Maybe.fromJust . Set.delete Nothing $ a
fnord = Set.fromList [Nothing, Just 41, Just 43, Just 47]
then i get the following
setCatMaybes fnord == fromList [41,43,47]