hsdev-0.2.1.0: Haskell development library

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]