A lambda function does nothing other than call an existing function, two examples below:
fun x y -> x + y
fun x y -> foo x y
The lambda functions are redundant.
Replace the lambda with the function that is being called.
fun x y -> x + y
is the same as (+)
fun x y -> foo x y
is the same as foo
{
"reimplementsFunction": {
"enabled": true
}
}