我正在尝试通过列表中的所有元素作为参数运行帮助功能
-- Help Function
helpFun :: Int -> Int -> Int
helpFun x y = x + y
-- Main Function
mainfun :: [Int] -> [Int]
mainfun x = helpfun 2 [j | j <- x]
如果我们假设 x 是一个 int 列表,[0, 1, 2, 3, 4, 5, 6]
我应该更改什么以使其helpFun
对列表中的所有元素运行?helpFun 2 0
我想得到所有号码helpFun 2 6
所以就像
for a in list:
tt = helpFun 2 a
return tt