インタプリタで作業するときは、関数を名前にバインドすると便利なことがよくあります。次に例を示します。
ghci> let f = (+1)
ghci> f 1
2
f
これにより、名前が関数にエイリアスされます(+1)
。単純。
ただし、これが常に機能するとは限りません。nub
エラーの原因となる1つの例は、Data.List
モジュールからエイリアスを作成しようとしていることです。例えば、
ghci> :m Data.List
ghci> nub [1,2,2,3,3,3]
[1,2,3]
ghci> let f = nub
ghci> f [1,2,2,3,3,3]
<interactive>:1:14:
No instance for (Num ())
arising from the literal `3'
Possible fix: add an instance declaration for (Num ())
In the expression: 3
In the first argument of `f', namely `[1, 2, 2, 3, ....]'
In the expression: f [1, 2, 2, 3, ....]
ただし、引数を明示的に指定すると、x
エラーなしで機能します。
ghci> let f x = nub x
ghci> f [1,2,2,3,3,3]
[1,2,3]
誰かがこの行動を説明できますか?