The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
3answers
2k views

Writing cojoin or cobind for n-dimensional grid type

Using the typical definition of type-level naturals, I've defined an n-dimensional grid. {-# LANGUAGE KindSignatures #-} {-# LANGUAGE DataKinds #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE TypeFamilies ...
9
votes
2answers
356 views

Theoretically, is this a valid comonad instance for a list?

I'm trying to grasp the concept of comonads, and after reading this blog post, I think I have a solid understand of what they do and how they are related to monads. But, I thought I would delve into ...
1
vote
1answer
101 views

Haskell cabal Reactive package error

While trying to install Reactive with cabal, I get this: src/FRP/Reactive/PrimReactive.hs:79:8: Could not find module `Control.Comonad' It is a member of the hidden package `comonad-1.1.1.6'. ...
9
votes
2answers
487 views

Comonad example in Scala

What is Comonad, if it's possible describe in Scala syntax. I found scalaz library implementation, but it's not clear where it can be useful.
13
votes
1answer
612 views

Does the chain function in underscore.js create a monad?

In the chain documentation you find: Calling chain on a wrapped object will cause all future method calls to return wrapped objects as well. When you've finished the computation, use value to ...
4
votes
1answer
238 views

How should I implement a Cayley Table in Haskell?

I'm interested in generalizing some computational tools to use a Cayley Table, meaning a lookup table based multiplication operation. I could create a minimal implementation as follows : date ...
13
votes
2answers
869 views

What is the Store comonad?

Having some idea of what the Comonad typeclass is in Haskell, I've heard about the Store comonad. But looking at Control.Comonad.Store.Lazy, I don't really get it. What does it mean? What is it for? ...
27
votes
1answer
2k views

What is the Comonad typeclass in Haskell?

What is the Comonad typeclass in Haskell? As in Comonad from Control.Comonad in the comonad package (explanations of any other packages that provide a Comonad typeclass are also welcome). I've vaguely ...