a one dimensional cellular automata, using comonads
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

13 řádky
255B

  1. module Comonad where
  2. -------------------
  3. -- comonad class --
  4. -------------------
  5. class Functor w => Comonad w
  6. where
  7. (=>>) :: w a -> (w a -> b) -> w b
  8. extract :: w a -> a
  9. duplicate :: w a -> w (w a)
  10. x =>> f = fmap f (duplicate x)