
10 Jun
2020
10 Jun
'20
10:49 a.m.
hi, --any function foldr myAny'' :: (a-> Bool) -> [a] -> Bool myAny'' f = foldr (\a b -> f a || b) False this is the foldr notions. How would i make this point free? best,