Immutable.js 3.7.3 发布,不可变数据集合
6月14日 上海 OSC 源创会开始报名啦,有很多机械键盘送哦!!!
Immutable.js 3.7.3 发布,此版本主要是 bug 修复:
Improvements to documentation around equality,
hasIn
andwithMutations
Iterating over empty slice no longer throws.
Merge deep methods no longer throw if deep position is not mergeable.
此版本现已提供下载:https://github.com/facebook/immutable-js/archive/3.7.3.zip。
Immutable 是 Facebook 开发的不可变数据集合。不可变数据一旦创建就不能被修改,是的应用开发更简单,允许使用函数式编程技术,比如惰性评估。Immutable JS 提供一个惰性 Sequence,
允许高效的队列方法链,类似 map
和 filter
,不用创建中间代表。
immutable
通过惰性队列和哈希映射提供 Sequence
, Range
, Repeat
, Map
, OrderedMap
, Set
和一个稀疏 Vector
。