文件名称:next-pow-2:将非负整数四舍五入为2的幂
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-15 12:11:45
JavaScript
next-pow-2 将非负整数四舍五入到下一个2的幂。 例子 var np2 = require ( 'next-pow-2' ) for ( var i = 0 ; i <= 10 ; ++ i ) { console . log ( i + ' rounds to ' + np2 ( i ) ) } 输出 0 rounds to 1 1 rounds to 1 2 rounds to 2 3 rounds to 4 4 rounds to 4 5 rounds to 8 6 rounds to 8 7 rounds to 8 8 rounds to 8 9 rounds to 16 10 rounds to 16 安装 npm i next-pow-2 原料药 require('next-pow-2')(x) 将x舍入到2的下一个幂 x是小于2 ^ 32的非负整数 返回
【文件预览】:
next-pow-2-master
----.gitignore(109B)
----package.json(741B)
----np2.js(145B)
----LICENSE(1KB)
----README.md(639B)
----example()
--------example.js(100B)
----test()
--------test.js(286B)