文件名称:bitwise:JavaScriptTypeScript库可操作位,半字节,字节和缓冲区
文件大小:33.26MB
文件格式:ZIP
更新时间:2024-06-03 23:05:45
buffer npm-package bits byte bit-manipulation
按位 JavaScript / TypeScript库可操作位,半字节,字节和缓冲区。 例子 import bitwise from 'bitwise' const bits = bitwise . byte . read ( 42 ) // [0, 0, 1, 0, 1, 0, 1, 0] bitwise . bits . toString ( bits , 4 ) // '0010 1010' bitwise . byte . write ( bits ) // 42 bitwise . bits . and ( [ 0 , 0 , 1 , 1 ] , [ 0 , 1 , 0 , 1 ] ) // [0, 0, 0, 1] bitwise . bits . xor ( [ 0 , 0 , 1 , 1 ] , [ 0 , 1 , 0 , 1 ] ) // [0, 1, 1, 0] //