没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
Introducon to Monads
Cheng
What is Monad?
A way to structure computations in terms of
values and sequences of computations using
those values.
Allow the programmer to build up
computations using sequential building
blocks, which can themselves be sequences of
computations.
Determines how combined computations
form a new computation and frees the
programmer from having to code the
combination manually each time it is
required.
Why Monad?
Modularity
Composes computation from simple to complex
Separate the combination strategy from the
actual computations being performed.
Flexibility
More adaptable than equivalent programs
written without monads.
Isolation
Incorporating#side-e%ects (I/O, exception, null,
concurrency,. etc) and state into pure PF.
Meet the Monad?
Container Types
Option[T], List[T], Set[T]
Support higher order functions
def map[B](f: A => B): List[B]
Combinable
def 3atMap[B](f: A=>List[B]): List[B]
Example 1: Opon[A]
abstract class Option[+A] {
def isEmpty: Boolean
def get: A
def map[B](f: A => B): Option[B] =
if(isEmpty) None else Some(f(this.get))
def 3atMap[B](f: A => Option[B]): Option[B]
= if(isEmpty) None else f(this.get)
}
剩余29页未读,继续阅读
资源评论
sdfat5glut
- 粉丝: 4
- 资源: 2
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- P+F绝对值编码器GSD文件 PSM58.rar PFDG5046.GSD
- 图论重庆大学图论与应用课程期末复习资料(部分个人手写资料)(私人复习资料)
- 施工人员检测41-CreateML数据集.rar
- burp24-jdk-21.0.2
- 施工人员检测38-YOLO(v5至v9)、COCO、CreateML、Darknet、Paligemma、TFRecord、VOC数据集合集.rar
- burp-proxy-tools
- 施工人员检测37-YOLOv7、COCO、CreateML、Darknet、Paligemma、VOC数据集合集.rar
- 嵌入式系统课程设计:基于51单片机的温度检测系统实现
- BurpLoaderKeygen
- 工具变量-A股上市公司企业盟浪esg评级数据(2018-2022年).xlsx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功