language-lua-qq-0.1.0.0: Initial project template from stack

Safe HaskellNone
LanguageHaskell2010

Language.Lua.Lift

Documentation

class LiftExp a where Source

Minimal complete definition

Nothing

Methods

liftExp :: a -> Exp Source

Instances

LiftExp Bool 
LiftExp Double 
LiftExp Int 
LiftExp Integer 
LiftExp Exp 
LiftExp PrefixExp 
LiftExp Text 
LiftExp Text 
LiftExp [Char] 
LiftExp a => LiftExp [a] 
LiftExp a => LiftExp (Maybe a) 
(LiftExp a, LiftExp b) => LiftExp (a, b) 
(LiftExp a, LiftExp b, LiftExp c) => LiftExp (a, b, c) 
(LiftExp a, LiftExp b, LiftExp c, LiftExp d) => LiftExp (a, b, c, d) 
(LiftExp a, LiftExp b, LiftExp c, LiftExp d, LiftExp e) => LiftExp (a, b, c, d, e)