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)