liquidhaskell-0.8.10.2: Liquid Types for Haskell
Safe HaskellNone
LanguageHaskell98

Language.Haskell.Liquid.UX.QuasiQuoter

Documentation

symbolName :: Symbolic s => s -> Name Source #

data Simpl a Source #

Instances

Instances details
Monad Simpl Source # 
Instance details

Defined in Language.Haskell.Liquid.UX.QuasiQuoter

Methods

(>>=) :: Simpl a -> (a -> Simpl b) -> Simpl b #

(>>) :: Simpl a -> Simpl b -> Simpl b #

return :: a -> Simpl a #

Functor Simpl Source # 
Instance details

Defined in Language.Haskell.Liquid.UX.QuasiQuoter

Methods

fmap :: (a -> b) -> Simpl a -> Simpl b #

(<$) :: a -> Simpl b -> Simpl a #

Applicative Simpl Source # 
Instance details

Defined in Language.Haskell.Liquid.UX.QuasiQuoter

Methods

pure :: a -> Simpl a #

(<*>) :: Simpl (a -> b) -> Simpl a -> Simpl b #

liftA2 :: (a -> b -> c) -> Simpl a -> Simpl b -> Simpl c #

(*>) :: Simpl a -> Simpl b -> Simpl b #

(<*) :: Simpl a -> Simpl b -> Simpl a #

newtype LiquidQuote Source #

Constructors

LiquidQuote 

Instances

Instances details
Data LiquidQuote Source # 
Instance details

Defined in Language.Haskell.Liquid.UX.QuasiQuoter

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> LiquidQuote -> c LiquidQuote #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c LiquidQuote #

toConstr :: LiquidQuote -> Constr #

dataTypeOf :: LiquidQuote -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c LiquidQuote) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c LiquidQuote) #

gmapT :: (forall b. Data b => b -> b) -> LiquidQuote -> LiquidQuote #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> LiquidQuote -> r #

gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> LiquidQuote -> r #

gmapQ :: (forall d. Data d => d -> u) -> LiquidQuote -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> LiquidQuote -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> LiquidQuote -> m LiquidQuote #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> LiquidQuote -> m LiquidQuote #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> LiquidQuote -> m LiquidQuote #

dataToExpQ' :: Data a => a -> Q Exp Source #

extQ :: (Typeable a, Typeable b) => (a -> q) -> (b -> q) -> a -> q Source #