vote up 6 vote down star
3

I found defining the following

(%)  = flip fmap

I can write code like the following:

readFile "/etc/passwd" % lines % filter (not . null)

to me it makes more sense then the alternative

filter (not . null) <$> lines <$> readFile "/etc/passwd"

Obviously its just a matter of order, does anyone else do this? is there a valid reason not to write code like this?

flag

3 Answers

vote up 2 vote down

Personally I wouldn't use such an operators because then I have to learn two orders in which to read programs.

link|flag
1  
Not sure I find this argument compelling enough, but it's an interesting point of view, so +1. Out of curiosity: do you prefer =<< over >>= for that same reason? – Stephan202 Nov 5 at 8:52
I certainly do! – pumpkin Nov 5 at 19:23
I never understood the previous statement. It seems to make sense using standard notation because then it's like unix piping? – codebliss Nov 5 at 20:16
1  
I prefer =<< to >>= because the form has a clear interpretation in terms of the Kleisli category of your monad which can be inverted to give an understandable definition for comonads. – Edward Kmett Nov 5 at 20:37
Stephan: that said your argument seems I'll posed. Preferring >>= to =<< would be more appropriate as you are given the former and the other is derived. I realize you were after the argument order though. – Edward Kmett Nov 5 at 20:40
vote up 3 vote down
-- (.) is to (<$>) as flip (.) is to your (%).

I usually define (&) = flip (.) and it's just like your example, you can apply function composition backwords. Allows for easier to understand points-free code in my opinion.

link|flag
3  
There's also the Arrow combinator (>>>) which is the same as (flip (.)) for functions – Will Nov 5 at 22:23
Why thank you sir! Other than the import boilerplate, this will be useful so I can keep standard code. – codebliss Nov 7 at 4:58
vote up 3 vote down

There is a similar function for the Applicative typeclass called <**>; it's a perfectly reasonable thing to want or use for Functor as well. Unfortunately, the semantics are a bit different for <**>, so it can't be directly widened to apply to Functor as well.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.