This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Kind = Star | KFun of Kind * Kind |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type BaseTyCon = TyConNumber | |
| TyConBool | |
| TyConUnit | |
| TyConList | |
| TyConFun | |
| TyConTuple | |
| TyConUserDefined of string | |
type TyCon = TyCon of BaseTyCon * Kind |
NewerOlder