In Haskell, I can easily map a list:
map (\x -> 2*x) [1,2]
gives me [2,4]. Is there any "mapTuple" function which would work like that?
mapTuple (\x -> 2*x) (1,2)
with the result being (2,4).
|
|
|
Searching at Hoogle gives no exact matches for
Note, you will have to define a new function for 3-tuples, 4-tuples etc - although such a need might be a sign, that you are not using tuples like they were intended: In general, tuples hold values of different types, so wanting to apply a single function to all values is not very common. |
|||||||||||||||||
|
|
A rather short point-free solution:
Needs the |
|||||||||||
|
|
You can use arrows from module
Your mapTuple then becomes
If with your question you asked for a function that maps over tuples of arbitrary arity, then I'm afraid you can't because they would have different types (e.g. the tuple types |
||||
|
You could use a Bifunctor:
This works not only for pairs, but for a number of other types as well, e.g. for |
|||||||
|
|
To add another solution to this colourful set... You can also map over arbitrary n-tuples using Scap-Your-Boilerplate generic programming. For example:
Note that the explicit type annotations are important, as SYB selects the fields by type. If one makes one tuple element type |
|||||||
|
|
Yes, for tuples of 2 items, you can use |
|||
|
|
|
Yes, you would do:
|
|||||||||||
|
|
You can also use Applicatives which have additional benefit of giving you possibility to apply different functions for each tuple element:
Inline version:
or with different map functions and without lambda:
Other possibility would be to use Arrows:
|
||||
|
|