I know about the filter function but I'm wondering how I can filter out. For example: filter odd [1,2,3] = [1,3], but I want filter (not(odd)) [1,2,3] = [2] (yes I know there's an even function but this is just an example of it). I don't know if there's a separate function that I don't know about or if there's just something I can add to the argument. Thanks. note: I can't use the GHC.Utils.Misc filterOut.