UNPKG
@oslojs/binary
Version:
latest (1.0.0)
1.0.0
0.4.0
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
Basic primitives for working with binary data
github.com/oslo-project/binary
oslo-project/binary
@oslojs/binary
/
dist
/
bits.d.ts
5 lines
(4 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
export
declare
function
rotl32
(
x
:
number
,
n
:
number
):
number
;
export
declare
function
rotr32
(
x
:
number
,
n
:
number
):
number
;
export
declare
function
rotr64
(
x
:
bigint
,
n
:
number
):
bigint
;
export
declare
function
rotl64
(
x
:
bigint
,
n
:
number
):
bigint
;