acme-kitchen-sink-0.1.0.0: A place for dumping that does-not-feel-right code while you improve it

Safe HaskellSafe
LanguageHaskell2010

Control.Applicative.Acme

Synopsis

Documentation

pamf :: Applicative f => f (a -> b) -> a -> f b Source #

Application with the inverse lifting behavior of fmap.

Issue #1

(>$<) :: Applicative f => f (a -> b) -> a -> f b Source #

Operator version of pamf

Issue #1