symantic-6.3.4.20190712: Library for Typed Tagless-Final Higher-Order Composable DSL

Safe HaskellNone
LanguageHaskell2010

Language.Symantic.Interpreting.View

Contents

Description

Interpreter to serialize an expression into a Text.

Synopsis

Type View

newtype View a Source #

Interpreter's data.

Constructors

View 

Fields

Instances
Sym_Lambda View Source # 
Instance details

Defined in Language.Symantic.Compiling.Term

Methods

apply :: View ((a -> b) -> a -> b) Source #

app :: View (a -> b) -> View a -> View b Source #

lam :: (View a -> View b) -> View (a -> b) Source #

let_ :: View var -> (View var -> View res) -> View res Source #

lam1 :: (View a -> View b) -> View (a -> b) Source #

qual :: proxy q -> View t -> View (q #> t) Source #

Show (View a) Source # 
Instance details

Defined in Language.Symantic.Interpreting.View

Methods

showsPrec :: Int -> View a -> ShowS #

show :: View a -> String #

showList :: [View a] -> ShowS #

view :: View a -> Text Source #

Interpreter.

Constructors

view1 :: Text -> View a1 -> View a Source #

view2 :: Text -> View a1 -> View a2 -> View a Source #

view3 :: Text -> View a1 -> View a2 -> View a3 -> View a Source #

viewInfix :: Text -> Infix -> View a1 -> View a2 -> View a Source #