Uczę się haskell i jestem nieco zdezorientowany, jak działa operator aplikacji curry.
Według GHC typ $ jest
*Main>:t ($)
($) :: (a->b) -> a -> b
Ale mogę wpisać następujący kod
*Main>map ($ 2) [(*2), (+2), (/2)]
[4.0,4.0,1.0]
Według podpisu $ chociaż Przypuszczam, że muszę używać klapki funkcja, ponieważ pierwszym parametrem dla $ jest (a-> b).
Na przykład, nie mogę wykonać następujące czynności
curry_test :: Integer -> String -> String
curry_test x y = (show x) ++ " " ++ y
*Main> let x = curry_test "123"
Couldn't match expected type `Integer' with actual type `[Char]'
In the first argument of `curry_test', namely `"123"'
In the expression: curry_test "123"
In an equation for `x': x = curry_test "123"
Ale mogę zrobić
let x = curry_test 2
Podpowiedź: '(*) :: Num a => a -> A -> A' – DiegoNolan