What do you prefer?
```
\a b -> (a, Just b)
```
or:
```
(. Just) . (,)
```
and why?
I prefer the lambda version
Pointfree or die
Poll ended at .
What do you prefer?
```
\a b -> (a, Just b)
```
or:
```
(. Just) . (,)
```
and why?
@kosmikus I was about to have the second one in my code, but I had mercy with my future me and decided against it.
What I like about it is that it helps my understand that `a` can be a function in:
```
a -> b == a -> (c -> d)
```
With this in mind it is not that hard to understand.
curry (fmap Just)