标签: haskell
我有这个功能:
./
我希望将它转换为折叠器,但我对lambda函数有麻烦
答案 0 :(得分:2)
试试这个:
count n = foldr (\(f,i) j -> if (i==n) then j+1 else j) 0