文件名称:matrix-hash:哈希的多维实现
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-25 03:33:50
JavaScript
矩阵哈希 Node.js和带有浏览器的哈希的多维实现。 安装 $ npm install matrix-hash 用法 var MatrixHash = require ( 'matrix-hash' ) var hash = new MatrixHash ( 3 ) hash . dimension // 3 hash . size // 0 hash . set ( [ 1 , 0 , 0 ] , 'red' ) hash . set ( [ 0 , 1 , 0 ] , 'green' ) hash . set ( [ 0 , 0 , 1 ] , 'blue' ) hash . set ( [ 1 , 1 , 0 ] , 'yellow' ) hash . set ( [ 0 , 1 , 1 ] , 'turquoise' ) hash . set ( [ 1 , 0 , 1 ] ,
【文件预览】:
matrix-hash-master
----.gitignore(21B)
----.eslintrc(324B)
----package.json(703B)
----.travis.yml(108B)
----gulpfile.js(325B)
----index.js(1KB)
----README.md(2KB)
----.npmignore(71B)
----test()
--------matrix-hash_test.js(3KB)