Given:
data TwoInts = TwoInts Int Int
add'em :: TwoInts -> Int
add'em (TwoInts a b) = a+b
is it possible to write add'em without having to name a and b. Something like:
add'em TwoInts = (+) -- (Note: Fails to type check)
|
Given:
is it possible to write
|
|||||
|
|
In general I'd say no, it's not possible. However, if you are trying to solve the practical problem of unwrapping and wrapping all over the place (especially common with newtypes), I often define a The basic types already have such functions defined, e.g. |
|||||||||
|
|
Via analogy to tuples,
we can define an operation for lifting functions of two arguments onto a
Giving us the nice notation:
|
|||||||||||||||||
|