hsdev-0.1.5.2: Haskell development library and tool with support of autocompletion, symbol info, go to declaration, find references etc.
Control.Apply.Util
Synopsis
(&) :: a -> (a -> b) -> b Source
chain :: [a -> a] -> a -> a Source
with :: a -> [a -> a] -> a Source
Flipped version of chain, which can be used like this:
chain
foo `with` [f, g, h]