博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Immutable,js] Iterating Over an Immutable.js Map()
阅读量:6114 次
发布时间:2019-06-21

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

Immutable.js provides several methods to iterate over an Immutable.Map(). These also apply to the other immutable structures found within the Immutable.js family, such as Set and List. The primary methods are map and forEach, but we will also cover filter and groupBy.

 

// map()  return todos.map(todo => {    return todo.text  });// filter()  return todos.filter(todo => {    return todo.completed;  })// groupBy() --> return new Immtuable Map  return todos.groupBy(todo => {    return todo.completed  })

 

Notice, only forEach method will actually change its value!

// forEach()function markAllTodosAsComplete(todos) {  return todos.forEach(todo => {    todo.completed = true  });}

 

转载地址:http://qgpka.baihongyu.com/

你可能感兴趣的文章
Tomcat与Spring中的事件机制详解
查看>>
Spark综合使用及用户行为案例区域内热门商品统计分析实战-Spark商业应用实战...
查看>>
初学者自学前端须知
查看>>
Retrofit 源码剖析-深入
查看>>
企业级负载平衡简介(转)
查看>>
ICCV2017 论文浏览记录
查看>>
科技巨头的交通争夺战
查看>>
当中兴安卓手机遇上农行音频通用K宝 -- 卡在“正在通讯”,一直加载中
查看>>
Shell基础之-正则表达式
查看>>
JavaScript异步之Generator、async、await
查看>>
讲讲吸顶效果与react-sticky
查看>>
c++面向对象的一些问题1 0
查看>>
直播视频流技术名词
查看>>
网易跟贴这么火,背后的某个力量不可忽视
查看>>
企业级java springboot b2bc商城系统开源源码二次开发-hystrix参数详解(八)
查看>>
java B2B2C 多租户电子商城系统- 整合企业架构的技术点
查看>>
IOC —— AOP
查看>>
比特币现金将出新招,推动比特币现金使用
查看>>
数据库的这些性能优化,你做了吗?
查看>>
某大型网站迁移总结(完结)
查看>>