博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Compose] 13. Lift into a Pointed Functor with of
阅读量:5251 次
发布时间:2019-06-14

本文共 375 字,大约阅读时间需要 1 分钟。

We examine the of function we've seen on a few types and discover it's the Pointed interface.

 

Instead of doing constructor way of Task:

const useTask= (x) =>   new Task((rej,  res) => res(x))

 

We can just say:

Task.of("something"); //Task("something")Either.of("something"); // Either("something");Box.of(100); // Box(100)

 

转载于:https://www.cnblogs.com/Answer1215/p/6198084.html

你可能感兴趣的文章
阿里云域名备案成功,网站可以成功访问啦。
查看>>
docker安装脚本
查看>>
log4net 使用笔记
查看>>
@WebServlet注解
查看>>
网站收集
查看>>
Servlet与JSP之间相互传值问题
查看>>
编译安装mysql5.7
查看>>
flask 在模板中渲染错误消息 --
查看>>
flask实战-个人博客-编写博客前台
查看>>
spring boot cloud
查看>>
Eclipse设置全局用户名
查看>>
列表类型内置方法
查看>>
Android高级图片滚动控件,编写3D版的图片轮播器
查看>>
包新建[hsp学习笔记]留言本的创建(第十三讲)
查看>>
金币能力UVA11292:Dragon of Loowater
查看>>
项目总结:文件上传(MVC uploadify)
查看>>
JavaScript自动计算并且保留两位小数
查看>>
dlib安装教程(for linux)
查看>>
MapGis如何实现WebGIS分布式大数据存储的
查看>>
栅格投影
查看>>