博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Compose] 19. Leapfrogging types with Traversable
阅读量:5077 次
发布时间:2019-06-12

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

We use the traversable instance on List to reimplement Promise.all() type functionality.

 

For example we want to conver:

[Task] => Task([])

Conver array of Task, into Task of array value.

 

To do that we can use traverse

Noraml Javascript array doesn't have traverse method, so we need to bring immutable-ext.

const fs = require('fs')const Task = require('data.task')const futurize = require('futurize').futurize(Task)const { List } = require('immutable-ext')const readFile = futurize(fs.readFile)const files = List(['box.js', 'config.json'])files.traverse(Task.of, fn => readFile(fn, 'utf-8')).fork(console.error, console.log)

 

Here 'futurize' give us a easy way to wrap a function into a Task. We can do it manually as well:

/*const readFile = (filename, encode) => new Task((rej, res) => {    return fs.readFile(filename, encode, (err, content) => {        if (err) rej(err);        res(content);    });});*/const readFile = futurize(fs.readFile);

 

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

你可能感兴趣的文章
mysql重置密码
查看>>
jQuery轮 播的封装
查看>>
一天一道算法题--5.30---递归
查看>>
JS取得绝对路径
查看>>
排球积分程序(三)——模型类的设计
查看>>
python numpy sum函数用法
查看>>
php变量什么情况下加大括号{}
查看>>
linux程序设计---序
查看>>
【字符串入门专题1】hdu3613 【一个悲伤的exkmp】
查看>>
C# Linq获取两个List或数组的差集交集
查看>>
HDU 4635 Strongly connected
查看>>
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
BZOJ 1047 HAOI2007 理想的正方形 单调队列
查看>>
各种语言推断是否是手机设备
查看>>
这个看起来有点简单!--------实验吧
查看>>
PHP count down
查看>>