<div style='font-family:Arial; font-size:13px;'>hi,<div><br></div><div><div style="color: rgb(212, 212, 212); background-color: rgb(30, 30, 30); font-family: Consolas, "Courier New", monospace; font-size: 14px; line-height: 19px; white-space: pre;"><div><span style="color: #6a9955;">--any function foldr</span></div><div><span style="color: #dcdcaa;">myAny''</span> :: (<span style="color: #9cdcfe;">a</span>-> <span style="color: #569cd6;">Bool</span>) -> [<span style="color: #9cdcfe;">a</span>] -> <span style="color: #569cd6;">Bool</span></div><div>myAny'' f = foldr (\a b -> f a || b) False</div></div><br><div><div style="font-family:Arial; font-size:13px;">this is the foldr notions. How would i make this point free?</div></div></div><div style="font-family:Arial; font-size:13px;"><br></div><div style="font-family:Arial; font-size:13px;">best,</div></div>