Looking through the Haskell Prelude, I see a function const:
const x _ = x
I can't seem to find anything relevant regarding this function.
What's the point? Can anyone give an example of where this function might be used?
|
It's useful for passing to higher-order functions when you don't need all their flexibility. For example, the monadic sequence operator
It's somewhat neater than using a lambda
and you can even use it point-free
although I don't particularly recommend that in this case. |
|||||||||||||||
|
|
To add to hammar's excellent direct answer: humble functions like Not that I think haskell's prelude functions were modeled consciously after that formal system or anything. It's just that creating rich abstractions in haskell is very easy, so you often see these types of theoretical things emerge as practically useful. Shameless plug, but I blogged about how the Applicative instance for |
|||||||||
|
|
A simple example for using
The definition is:
or written not as pointless:
You see how |
|||
|
|
|
Another use is to implement class member functions that have a dummy argument which should not be evaluated (used to resolve ambiguous types). Example that could be in Data.bits:
By using const we explicitly say that we are defining constant values. Personally I dislike the use of dummy parameters, but if they are used in a class then this is a rather nice way of writing instances. |
|||
|
|
backgroundColor :: Text -> Coloris for mebackgroundColor = const White– Zhen Sep 14 '11 at 8:27