The Monad
class defines a >>
method, which sequences two monadic actions:
>> :: Monad m => m a -> m b -> m b
The binding operator >>=
has a flipped-argument equivalent, =<<
; as do the monadic function composition ('fish') operators >=>
and <=<
. There doesn't seem to be a <<
, though (after a few minutes of Hoogling). Why is this?
Edit: I know it's not a big deal. I just like the way certain lines of code look with the left-pointing operators. x <- doSomething =<< doSomethingElse
just looks nicer, with the arrows all going the same way, than x <- doSomethingElse >>= doSomething
.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…