vote up 1 vote down star

I want to remove every occurance of a certain value from a list. I have written a function to do this:

removeall val [] = []
removeall val list = if (head list) == val
                     then removeall val (tail list)
                     else (head list):(removeall val (tail list))

but I would like to use Prelude if possible for reasons of elegance and readability.

flag

4 Answers

vote up 13 vote down check
removeall val list = filter (/= val) list
link|flag
7  
or alternatively: removeall val = filter (/= val) – Peter Aug 26 at 13:19
vote up 2 vote down

The following works as well

removeall val list = [ x | x <- list, x /= val ]
link|flag
vote up 16 vote down
removeall = filter . (/=)
link|flag
vote up 1 vote down

This is just a rewrite of yours which removes the head and tail function calls.

removeall val [] = []
removeall val (x:xs) = if (x == val) 
                         then removeall val xs 
                         else x:removeall val xs

Personally I prefer the

removeall = filter . (/=)

one given by the others but that might be harder for a beginner to understand quickly.

link|flag
The filter . (/=) version did make me stop and think for a bit, but I thought Peter's slightly more pointful removeall val = filter (/= val) was quite clear. – Chuck Aug 27 at 20:55
The toughest thing about your second solution (and Haskell in general) is that the standard library is huge, so beginners don't know all the primitives (like map, mapAccumL, filter, foldl, zip, etc) – Peter Sep 7 at 7:58
1  
@Peter, it wasn't my suggestion but rather Edward Kmett's. I love the second solution for its concise nature but yes if I were a beginner I'd go for something along the lines of the first. And yes I agree, the standard library is huge but once you get to know most of it you're good to go :) – Andrew Calleja Sep 7 at 18:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.