文件名称:list-zipper:不可变的列表拉链,受Haskell Data.List.Zipper的启发
文件大小:6KB
文件格式:ZIP
更新时间:2024-06-07 01:50:35
JavaScript
单拉链 受Haskell Data.List.Zipper启发的简单列表拉链。 如果您发现自己正在使用类似这样的东西: var array = [ 'foo' , 'bar' , 'baz' ] ; var currentIndex = 1 ; 然后,您可以将其替换为: var array = ListZipper ( [ 'foo' , 'bar' , 'baz' ] , 1 ) ; 阅读以了解更多详细信息。 您还可以找到有关拉链的更多信息。 安装 Node.js npm install list-zipper 凉亭 bower install list-zipper 用法 // Move right ListZipper ( [ 1 , 2 , 3 ] ) . next ( ) . next ( ) . val ( ) ; // 3 // Move left Li
【文件预览】:
list-zipper-master
----bower.json(525B)
----test.js(2KB)
----.travis.yml(35B)
----LICENSE(1KB)
----README.md(1KB)
----docs()
--------index.md(1KB)
----.editorconfig(336B)
----.gitignore(526B)
----index.js(3KB)
----CHANGELOG.md(111B)
----package.json(721B)