What's going on in this type signature? (Vector.Mutable modifiers in Haskell)

纵饮孤独 提交于 2019-12-04 02:12:08
Chris Kuklewicz

I think you are using the vector package, as in

import Data.Vector.Mutable

Following the PrimMonad type class leads to low level details; the thing to notice is the two instances:

instance PrimMonad IO where ...
instance PrimMonad (ST s) where ...

So (PrimMonad m) is just a way of saying m is either IO or (ST s). These are the two basic monads in which Haskell is setup to let you mutate memory. To be clear, m is a type constructor and applying m to a type like Int gives a type: m Int.

To emphasize: IO and (ST s) are special because they allow you to "store state" using this ability to mutate the actual memory. They expose this capability in a raw form that the rest of Haskell hides.

Now PrimState is a newish thing: an associated data type. In the PrimMonad type class there is a declaration:

-- | Class of primitive state-transformer monads
class Monad m => PrimMonad m where
  -- | State token type
  type PrimState m

The type that (PrimState m) will be in your code depends on what the instance for (PrimMonad m) assigned to it.

instance PrimMonad IO where
  type PrimState IO = RealWorld

instance PrimMonad (ST s) where
  type PrimState (ST s) = s

The RealWorld type is an low level internal implementation detail of IO in GHC. The s type attached to (ST s) is the existential type trick that lets runST prove that nothing mutable has escaped the (ST s) monad.

To make the same code work in IO and (ST s) the PrimMonad type-class (with associated PrimState) are used to provide ad-hoc overloading.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!