wai-routes-0.8.0: Typesafe URLs for Wai applications.

Safe HaskellSafe-Inferred
LanguageHaskell2010

Util.Free

Synopsis

Documentation

newtype F f a Source

Constructors

F 

Fields

runF :: forall r. (a -> r) -> (f r -> r) -> r
 

Instances

Functor f => Monad (F f) 
Functor f => Functor (F f) 
Functor f => Applicative (F f) 

liftF :: Functor f => f a -> F f a Source

A version of lift that can be used with just a Functor for f.