a one dimensional cellular automata, using comonads
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
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)