The standard library provides many flipped versions of standard operators. >>=
has =<<
, $
has &
, etc.. Does .
have a flipped version? I would really rather not have to define one myself, if it already exists.
Asked
Active
Viewed 48 times
1

enigmaticPhysicist
- 1,518
- 16
- 21
-
Yes, [`Control.Category`](https://hackage.haskell.org/package/base-4.16.1.0/docs/Control-Category.html) defines `(<<<) = (.)` and `(>>>) = flip (<<<)` for left-to-right "diagrammatic order". – Iceland_jack May 17 '22 at 22:36