作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码:
type Name = String
data Level = T0 | T1 | T2
data T (l :: Level) where
Tint :: T t
Tdyn :: T t
Tbool :: T t
Tarr :: T 'T0 -> T 'T0 -> T t
Tand :: T 'T1 -> T 'T1 -> T 'T1
Tarr2 :: T 'T1 -> T 'T2 -> T 'T2
class Arr (l1 :: Level) (l2 :: Level) (l3 :: Level) | l3 -> l1 l2 where
infixr 3 ~>
(~>) :: T l1 -> T l2 -> T l3
instance Arr 'T0 'T0 'T0 where
(~>) = Tarr
instance Arr 'T0 'T0 'T1 where
(~>) = Tarr
instance Arr 'T1 'T2 'T2 where
(~>) = Tarr2
infixr 5 /\
(/\) :: T 'T1 -> T 'T1 -> T 'T1
(/\) = Tand
infixr 3 ~.>
(~.>) :: T 'T0 -> T 'T0 -> T t
(~.>) = Tarr
infixr 3 ~!>
(~!>) :: T 'T1 -> T 'T2 -> T 'T2
(~!>) = Tarr2
type Typ2 = T 'T2
type Typ1 = T 'T1
type Typ0 = T 'T0
int :: T t
int = Tint
bool :: T t
bool = Tbool
dyn :: T t
dyn = Tdyn
newType :: Typ2
newType = int /\ int ~> int /\ int ~> dyn
data Expr = Vi Int
| Vb Bool
| Vv Name
| App Expr Expr
| Lam Name Typ1 Expr
deriving(Generic)
type Env = [(Name,Typ1)]
typecheck :: Expr -> Env -> [Typ2]
Name -> Env -> [Typ0]
typecheck :: Expr -> Env -> [Typ2]
typecheck (Vv x) env = (envlookup x env)
envlookup :: Name -> Env -> [Typ0]
envlookup name =
\case
(n,t):xs
| n == name ->
case t of
int -> [int]
-- otherwise -> t
[] -> []
最佳答案
一种选择是编写一个提高类型级别的函数:
raise0 :: T T0 -> T t
raise0 Tint = Tint
raise0 Tdyn = Tdyn
raise0 Tbool = Tbool
raise0 (Tarr i e) = Tarr i e
Typ0 -> Typ2
.另一种方法是让您的环境类型将级别作为参数:
envlookup :: Name -> Env t -> [T t]
envlookup name env = [t | (n, t) <- env, n == name]
newtype AnyT = AnyT (forall t. T t)
type Env = [(Name, AnyT)]
envlookup :: Name -> Env -> [T t]
envlookup name env = [t | (n, AnyT t) <- env, n == name]
关于haskell - 如何在 Haskell 中从不同类型级别强制类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60537059/
我是一名优秀的程序员,十分优秀!