6

我已经看到在最新版本的 GHC 中支持类型级列表。但是,我需要为应用程序使用类型级别集,并且希望实现基于类型级别列表的类型级别集库。但我不知道从哪里开始:(

Haskell 中是否有任何支持类型级别集的库?

4

1 回答 1

2

您可以将HSet属性用于HList包中的HList

{-# LANGUAGE FlexibleInstances #-}

import Data.HList

class (HList l, HSet l) => ThisIsSet l where
  -- Here we have @l@ which is @HList@ _and_ @HSet@.
  test :: l

-- This is ok:

instance ThisIsSet HNil where
  test = hNil

-- And this:

instance ThisIsSet (HCons HZero HNil) where
  test = hCons hZero hNil

-- And this (HZero != HSucc HZero):

instance ThisIsSet (HCons HZero (HCons (HSucc HZero) HNil)) where
  test = hCons hZero (hCons (hSucc hZero) hNil)

-- This is an error since HSucc HZero == HSucc HZero:

instance ThisIsSet (HCons (HSucc HZero) (HCons (HSucc HZero) HNil)) where
  test = hCons (hSucc hZero) (hCons (hSucc hZero) hNil)

要使用其他类型,您需要为它们编写HEq实例。

于 2013-08-29T05:26:12.593 回答