So I've got a list of items (Recipes) that I want to filter based on a ruleset,
ruleset = [rule0, rule1, rule2, rule3, rule4]
where each rule is a function :: Recipe -> Bool. I want to apply these rules to each item in the list, and I've been doing so using the following function:
testRules :: Recipe -> Bool
testRules r = rule0 r && rule1 r && rule2 r && rule3 r && rule4 r
There must be a way to apply the array without explicitly saying "rule0 && rule1&& ..."
Does anyone know a way? I know that 'map' applies one function to a list.. And zipWith multiplies an array by an array.. There must be another function to perform this task!
I've also been thinking that maybe I can pass ruleset to testRules as a parameter and recursively go through the set of rules:
testRules (rule:rules) r = rule r && testRules rules
testRules [] r = True
However, I don't know how to provide the head of the function (testRules :: )
Cheers for any help!