Skip to main content

UInt64

export interface UInt64 {
  add(other: UInt64): UInt64
  and(other: UInt64): UInt64
  eq(other: UInt64): boolean
  high: number
  low: number
  not(): UInt64
  rotr(n: number): UInt64
  shiftr(n: number): UInt64
  toBytes(littleEndian?: boolean): number[]
  xor(other: UInt64): UInt64
}

Properties

add

add(other: UInt64): UInt64

and

and(other: UInt64): UInt64

eq

eq(other: UInt64): boolean

high

high: number

low

low: number

not

not(): UInt64

rotr

rotr(n: number): UInt64

shiftr

shiftr(n: number): UInt64

toBytes

toBytes(littleEndian?: boolean): number[]

xor

xor(other: UInt64): UInt64