What is exactly an indexed functor in Haskell and what are its usages?

后端 未结 1 1504
礼貌的吻别
礼貌的吻别 2021-01-04 00:36

When studying functors in Haskell I came up with Functor.Indexed type of functor. This functor defines an operation called imap. I didn\'t understood its defini

相关标签:
1条回答
  • 2021-01-04 01:15

    An indexed functor is, to use spacesuitburritoesque wording, “a container that also contains a mapping”. I.e. a value f j k a will “contain” some sort of morphism(s) j -> k (not necessarily functions, can be more general arrows) and also values of type a.

    For those a values, the container is a functor in the obvious way. In fact the IxFunctor class on its own is pretty boring – an

    instance IxFunctor f
    

    is basically the same as

    instance Functor (f j k)
    

    Now, where it gets interesting is when you consider the more specific functor classes. This monad one isn't actually in the Indexed module, but I think it makes the point best clear:

    class IxPointed f => IxMonad f where
      ijoin :: m j k (m k l a) -> m j l a
    

    compare this side-by-side:

    (>>>) ::  (j->k) -> (k->l)   ->   j->l
    ijoin :: m j  k   (m k  l a) -> m j  l a
    join  :: m        (m      a) -> m      a
    

    So what we do is, while joining the “container-layers”, we compose the morphisms.

    The obvious example is IxState. Recall the standard state monad

    newtype State s a = State { runState :: s -> (a, s) }
    

    This, when used as a monad, simply composes the s -> s aspect of the function:

      join (State f) = State $ \s -> let (State f', s') = f s in f' s'
    

    so you thread the state first through f, then through f'. Well, there's really no reason we need all the states to have the same type, right? After all, the intermediate state is merely passed on to the next action. Here's the indexed state monad,

    newtype IxState i j a = IxState { runIxState :: i -> (a, j) }
    

    It does just that:

      ijoin (IxState f) = IxState $ \s -> let (IxState f', s') = f s in f' s'
    
    0 讨论(0)
提交回复
热议问题