Imagine this:
f = (*10) . (+1) It is a simple way to say to add 1 and then multiply by 10. Now check the following:
f = (* 10) . (-1) Here -1 is a number, not a function, I would like to know if there is a function available to avoid this
\x -> x - 1 or this
flip (-) 1 I know they are right, but I would like to not make it be like that.