Comonad

  1. class Functor w => Comonad w where
  2. extract :: w a -> a
  3. duplicate :: w a -> w (w a)
  4. duplicate = extend id
  5. extend :: (w a -> b) -> w a -> w b
  6. extend f = fmap f . duplicate

Comonad 是个类型类。

比较 Monad 和 Comonad

  1. class Functor m => Monad m where
  2. return :: a -> m a
  3. bind :: (a -> m b) -> (m a -> m b)
  4. join :: m (m a) -> m a
  5. join = bind id
  6. bind f = fmap f . join
  7. (>>=) :: m a -> (a -> m b) -> m b
  8. (>>=) = flip bind
  9. class Functor w => Comonad w where
  10. extract :: w a -> a
  11. extend :: (w a -> b) -> w a -> w b
  12. duplicate :: w a -> w (w a)
  13. duplicate = extend id
  14. extend f = fmap f . duplicate
  15. (=>>) :: w b -> (w b -> a) -> a
  16. (=>>) = flip extend

((,) e) 是个 Comonad

也称作 CoReader(Env) Comonad。

  1. instance Comonad ((,)e) where
  2. duplicate p = (fst p, p)
  3. extract = snd
  1. Prelude Control.Comonad> duplicate (3,4)
  2. (3,(3,4))
  3. Prelude Control.Comonad> extract (3,4)
  4. 4
  5. Prelude Control.Comonad> extend fst (3,4)
  6. (3,3)
  7. Prelude Control.Comonad> extend snd (3,4)
  8. (3,4)

((->)m) 是个 Comonad

也称作 CoWriter(Traced) Comonad。

  1. instance Monoid m => Comonad ((->)m) where
  2. duplicate f m = f . mappend m
  3. extract f = f mempty

参考链接

Haskell for all: Comonads are objects

Comonads in Haskell

Haskell语言学习笔记(51)Comonad的更多相关文章

  1. Haskell语言学习笔记(88)语言扩展(1)

    ExistentialQuantification {-# LANGUAGE ExistentialQuantification #-} 存在类型专用的语言扩展 Haskell语言学习笔记(73)Ex ...

  2. Haskell语言学习笔记(79)lambda演算

    lambda演算 根据维基百科,lambda演算(英语:lambda calculus,λ-calculus)是一套从数学逻辑中发展,以变量绑定和替换的规则,来研究函数如何抽象化定义.函数如何被应用以 ...

  3. Haskell语言学习笔记(69)Yesod

    Yesod Yesod 是一个使用 Haskell 语言的 Web 框架. 安装 Yesod 首先更新 Haskell Platform 到最新版 (Yesod 依赖的库非常多,版本不一致的话很容易安 ...

  4. Haskell语言学习笔记(20)IORef, STRef

    IORef 一个在IO monad中使用变量的类型. 函数 参数 功能 newIORef 值 新建带初值的引用 readIORef 引用 读取引用的值 writeIORef 引用和值 设置引用的值 m ...

  5. Haskell语言学习笔记(39)Category

    Category class Category cat where id :: cat a a (.) :: cat b c -> cat a b -> cat a c instance ...

  6. Haskell语言学习笔记(72)Free Monad

    安装 free 包 $ cabal install free Installed free-5.0.2 Free Monad data Free f a = Pure a | Free (f (Fre ...

  7. Haskell语言学习笔记(44)Lens(2)

    自定义 Lens 和 Isos -- Some of the examples in this chapter require a few GHC extensions: -- TemplateHas ...

  8. Haskell语言学习笔记(38)Lens(1)

    Lens Lens是一个接近语言级别的库,使用它可以方便的读取,设置,修改一个大的数据结构中某一部分的值. view, over, set Prelude> :m +Control.Lens P ...

  9. Haskell语言学习笔记(92)HXT

    HXT The Haskell XML Toolbox (hxt) 是一个解析 XML 的库. $ cabal install hxt Installed hxt-9.3.1.16 Prelude&g ...

随机推荐

  1. Microsoft Dynamics CRM4.0 JScript 过滤lookup 出现 Microsoft Dynamics CRM 窗口无法打开,可能已被弹出窗口阻止程序所阻止。

    一.现象:JScript过滤lookup字段,选择lookup字段出现下图的情况: 出现:Microsoft Dynamics CRM 窗口无法打开,可能已被弹出窗口阻止程序所阻止.请将这台Micro ...

  2. gcc gdb调试 & 命令行带参 (一) ******

    用GDB调试程序 GDB概述———— GDB是GNU开源组织发布的一个强大的UNIX下的程序调试工具.或许,各位比较喜欢那种图形界面方式的,像VC.BCB等IDE的调试,但如果你是在UNIX平台下做软 ...

  3. spring boot学习(4) SpringBoot 之Spring Data Jpa 支持(1)

    第一节:Spring Data Jpa 简介 Spring-Data-Jpa JPA(Java Persistence API)定义了一系列对象持久化的标准,目前实现这一规范的产品有Hibernate ...

  4. sencha touch 小米3无法点击问题 修复

    修改源码文件夹下event/publisher/Dom.js中的attachListener方法,代码如下 attachListener: function(eventName, doc) { if ...

  5. 腾讯优图联手Science发布主题报告:计算机视觉的研发和应用

    近日,腾讯优图与<科学>(Science)杂志共同发布<Seeing is believing: R&D applications of computer vision> ...

  6. 蓝瓶的钙,好喝的钙——windows,我要蓝屏的

    原文地址:http://80x86.io/post/windows-blue-screen-0x00000050-page_fault_in_nonpaged_area 这里只截取一部分. windo ...

  7. 安装MegaCli,查看linux服务器raid信息

    1.下载安装包 下载地址:https://raw.githubusercontent.com/crazy-zhangcong/tools/master/MegaCli8.07.10.tar.gz 2. ...

  8. 两个栈实现队列 Python实现

    # coding=utf-8 MAX_LENGTH = 100 SUCCESS = 1 FAIL = 0 ERROR = -1 class Queue(object): stack_fir = Non ...

  9. django-paginator

    py code... from django.core.paginator import Paginator class NewsListView(View): def get(self, reque ...

  10. c++官方文档-命名空间

    #include<stdio.h> #include<iostream> #include<queue> #include<map> #include& ...