On 23 May 2011, at 17:20, michael rice wrote:

> What's the best way to end up with a list composed of only the Just values,
> no Nothings?

Alternatively,

    [ x      | Just x <- originals ]

It also occurs to me that perhaps you still want the Just constructors.

    [ Just x | Just x <- originals ]
    [ x      | x@(Just _) <- originals ]


_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to