:: (p -> q) -> (q -> r) -> p -> r -package:flow

Backwards function composition. This is a specialization of <&>, but it has a different fixity.
Diagrammatic composition.
A very simple operation involving running the function "under" the newtype. Suffers from the problems mentioned in the ala function's documentation.
A very simple operation involving running the function 'under' the newtype.
>>> under Product (stimes 3) 3
27