File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
test/Test/Database/LSMTree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -490,11 +490,14 @@ instance R.ResolveValue Value where
490490 Model state
491491-------------------------------------------------------------------------------}
492492
493- type ModelState :: ((Type -> Type ) -> Type -> Type -> Type -> Type ) -> Type
494- data ModelState h = ModelState Model. Model Stats
493+ type ModelStateTypeParams = TableKind
494+ type TableKind = (Type -> Type ) -> Type -> Type -> Type -> Type
495+
496+ type ModelState :: ModelStateTypeParams -> Type
497+ data ModelState ps = ModelState Model. Model Stats
495498 deriving stock Show
496499
497- initModelState :: ModelState h
500+ initModelState :: ModelState ps
498501initModelState = ModelState Model. initModel initStats
499502
500503{- ------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments