hsdev-0.1.6.3: Haskell development library and tool with support of autocompletion, symbol info, go to declaration, find references etc.

Safe HaskellSafe
LanguageHaskell98

Control.Apply.Util

Synopsis

Documentation

(&) :: 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:

foo `with` [f, g, h]