While reading the article "Data types a la carte" by Wouter Swierstra, I've got stuck at translating the following Haskell code into Scala:
data Expr f = In (f (Expr f ))
Expr is the data type used for representing arithmetic expressions in the way that specific expressions can be written as follows:
data Val e = Val Int
type IntExpr = Expr Val
data Add e = Add e e
type AddExpr = Expr Add
My problem is in implementing f (which might be thought of as the signature of the constructor) in Scala.
P.S. Defining a coproduct of two signatures, you can later on combine data types, getting an expression of type Expr (Val :+: Add ):
data (f :+: g) e = Inl (f e) | Inr (g e)
addExample :: Expr (Val :+: Add )
addExample = In (Inr (Add (In (Inl (Val 118))) (In (Inl (Val 1219)))))
