-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | Standard version of the reverse apply operator.
--
-- Provides a standard version of the reverse apply operator. Its
-- definition is simply (&) = flip ($).
@package reverse-apply
@version 2.0.1
-- | Provides the revese apply operator.
--
-- The definitions of & and <&> are identical
-- to those in the lens package. Hopefully they could move into
-- base at some point.
module Control.Apply.Reverse
(&) :: a -> (a -> b) -> b
(&!) :: a -> (a -> b) -> b
(<&>) :: Functor f => f a -> (a -> b) -> f b