Hey there,I've got a method:demaybefy :: [Maybe a] -> [a]demaybefy [] = []demaybefy (x:xs) = case x ofJust x -> x : demaybefy xsNothing -> demaybefy xsHowever, i feel that there is a method from preload/list/maybe that does exactly the same, but i cannot find it.Can someone help me?best regardsLeonhard_______________________________________________
Beginners mailing list
Beginners@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners