Recentemente ho rispolverato le mie conoscenze su come funzionano le Monade. Ho anche introdotto il concetto di 'Comonad' , che è descritto come il inverso doppio di un monade . Tuttavia, sono impossibile girarci intorno.
Per capire Monads, ho fatto la mia stessa analogia:
Monads can be seen as 'a blueprint to build conveyor belts of expressions'.
To define a new Monad(a new kind of conveyor-belt system) you need to define:
- A way to put something on a conveyor belt, e.g. 'start' a conveyor belt. (Known as
unit
orreturn
)- A way to connect a machine (an expression) that will be part of a conveyor belt to a conveyor belt. (Known as
join
orbind
or>>=
).(There is a third operation that takes the current conveyor belt, throws its contents away and starts a new conveyor belt known as
>>
, but it is used very rarely.)For the machines and conveyors to work properly together, you will need to make sure that:
- If you put something on a conveyor belt and pass it through a machine, the output should be the same as when you pass it through the machine manually. (Left Identity)
- If you want to put a conveyor-belt in-between an already existing conveyor belt, you should not end up with a conveyor belt that has a conveyor belt on top, but rather a single, longer conveyor belt. (Right Identity)
- It should not matter for the output if you manually use machine A, and then pass the result through the conveyor-connected B-C, or if you use conveyor-connected A-B and then pass the result manually through C. In other words: ((a >>= b) >>= c) should be the same as (a >>= (b >>= c)) (Associativity)
The most simple conveyor-belt would be the one that just takes the input and always continues on to the next expression. This is what a 'pipeline' is.
Another possibility, is to only let it go through the next machine if some condition is met for the value. This means that if at some of the expressions in-between, the value changes to something that is no longer allowed, then the rest of the expressions will be skipped. This is what the 'Maybe' monad does in Haskell.
You can also do other fancy conditional copy/change rules on the values before or after you pass them to a machine. An example: Parsers (Here, if an expression returns a 'failure' result, the value from before the expression is used as output).
Ovviamente l'analogia non è perfetta, ma spero che dia una rappresentazione chiara di come funzionano le monadi.
Tuttavia, sto avendo molti problemi a trasformare questa analogia in testa per capire le Comonad. So dalle piccole quantità di informazioni che ho trovato su Internet che una Comonad definisce:
-
extract
, che è una specie di reverse direturn
, cioè prende un valore out di una Comonad. -
duplicate
, che è un po 'l'inverso dijoin
, cioè crea due Comonade da una sola.
Ma come può una Comonad essere istanziata se siamo solo in grado di estrarre da loro o duplicarli? E come possono effettivamente essere utilizzati? Ho visto questo bellissimo progetto e ne parliamo (che purtroppo ho capito molto poco di), ma non sono sicuro di quale parte della funzionalità sia fornita esattamente da una Comonad.
Che cos'è una Comonad? Per cosa sono utili? Come possono essere usati? Sono commestibili?