Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Long

Index

Properties

MAX_UNSIGNED_VALUE: Long

Maximum unsigned value.

MAX_VALUE: Long

Maximum signed value.

MIN_VALUE: Long

Minimum signed value.

NEG_ONE: Long

Signed negative one.

ONE: Long

Signed one.

UONE: Long

Unsigned one.

UZERO: Long

Unsigned zero.

ZERO: Long

Signed zero

high: number

The high 32 bits as a signed value.

low: number

The low 32 bits as a signed value.

unsigned: boolean

Whether unsigned or not.

Methods

  • add(addend: string | number | Long): Long
  • Returns the sum of this and the specified Long.

    Parameters

    • addend: string | number | Long

    Returns Long

  • and(other: string | number | Long): Long
  • Returns the bitwise AND of this Long and the specified.

    Parameters

    • other: string | number | Long

    Returns Long

  • clz(): number
  • Returns count leading zeros of this Long.

    Returns number

  • comp(other: string | number | Long): number
  • Compares this Long's value with the specified's.

    Parameters

    • other: string | number | Long

    Returns number

  • compare(other: string | number | Long): number
  • Compares this Long's value with the specified's.

    Parameters

    • other: string | number | Long

    Returns number

  • countLeadingZeros(): number
  • Returns count leading zeros of this Long.

    Returns number

  • countTrailingZeros(): number
  • Returns count trailing zeros of this Long.

    Returns number

  • ctz(): number
  • Returns count trailing zeros of this Long.

    Returns number

  • div(divisor: string | number | Long): Long
  • Returns this Long divided by the specified.

    Parameters

    • divisor: string | number | Long

    Returns Long

  • divide(divisor: string | number | Long): Long
  • Returns this Long divided by the specified.

    Parameters

    • divisor: string | number | Long

    Returns Long

  • eq(other: string | number | Long): boolean
  • Tests if this Long's value equals the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • equals(other: string | number | Long): boolean
  • Tests if this Long's value equals the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • eqz(): boolean
  • Tests if this Long's value equals zero.

    Returns boolean

  • fromBits(lowBits: number, highBits: number, unsigned?: boolean): Long
  • Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. Each is assumed to use 32 bits.

    Parameters

    • lowBits: number
    • highBits: number
    • Optional unsigned: boolean

    Returns Long

  • fromBytes(bytes: number[], unsigned?: boolean, le?: boolean): Long
  • Creates a Long from its byte representation.

    Parameters

    • bytes: number[]
    • Optional unsigned: boolean
    • Optional le: boolean

    Returns Long

  • fromBytesBE(bytes: number[], unsigned?: boolean): Long
  • Creates a Long from its big endian byte representation.

    Parameters

    • bytes: number[]
    • Optional unsigned: boolean

    Returns Long

  • fromBytesLE(bytes: number[], unsigned?: boolean): Long
  • Creates a Long from its little endian byte representation.

    Parameters

    • bytes: number[]
    • Optional unsigned: boolean

    Returns Long

  • fromInt(value: number, unsigned?: boolean): Long
  • Returns a Long representing the given 32 bit integer value.

    Parameters

    • value: number
    • Optional unsigned: boolean

    Returns Long

  • fromNumber(value: number, unsigned?: boolean): Long
  • Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned.

    Parameters

    • value: number
    • Optional unsigned: boolean

    Returns Long

  • fromString(str: string, unsigned?: number | boolean, radix?: number): Long
  • Returns a Long representation of the given string, written using the specified radix.

    Parameters

    • str: string
    • Optional unsigned: number | boolean
    • Optional radix: number

    Returns Long

  • fromValue(val: string | number | Long | { high: number; low: number; unsigned: boolean }, unsigned?: boolean): Long
  • Converts the specified value to a Long.

    Parameters

    • val: string | number | Long | { high: number; low: number; unsigned: boolean }
    • Optional unsigned: boolean

    Returns Long

  • ge(other: string | number | Long): boolean
  • Tests if this Long's value is greater than or equal the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • getHighBits(): number
  • Gets the high 32 bits as a signed integer.

    Returns number

  • getHighBitsUnsigned(): number
  • Gets the high 32 bits as an unsigned integer.

    Returns number

  • getLowBits(): number
  • Gets the low 32 bits as a signed integer.

    Returns number

  • getLowBitsUnsigned(): number
  • Gets the low 32 bits as an unsigned integer.

    Returns number

  • getNumBitsAbs(): number
  • Gets the number of bits needed to represent the absolute value of this Long.

    Returns number

  • greaterThan(other: string | number | Long): boolean
  • Tests if this Long's value is greater than the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • greaterThanOrEqual(other: string | number | Long): boolean
  • Tests if this Long's value is greater than or equal the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • gt(other: string | number | Long): boolean
  • Tests if this Long's value is greater than the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • gte(other: string | number | Long): boolean
  • Tests if this Long's value is greater than or equal the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • isEven(): boolean
  • Tests if this Long's value is even.

    Returns boolean

  • isLong(obj: any): obj is Long
  • Tests if the specified object is a Long.

    Parameters

    • obj: any

    Returns obj is Long

  • isNegative(): boolean
  • Tests if this Long's value is negative.

    Returns boolean

  • isOdd(): boolean
  • Tests if this Long's value is odd.

    Returns boolean

  • isPositive(): boolean
  • Tests if this Long's value is positive or zero.

    Returns boolean

  • isZero(): boolean
  • Tests if this Long's value equals zero.

    Returns boolean

  • le(other: string | number | Long): boolean
  • Tests if this Long's value is less than or equal the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • lessThan(other: string | number | Long): boolean
  • Tests if this Long's value is less than the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • lessThanOrEqual(other: string | number | Long): boolean
  • Tests if this Long's value is less than or equal the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • lt(other: string | number | Long): boolean
  • Tests if this Long's value is less than the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • lte(other: string | number | Long): boolean
  • Tests if this Long's value is less than or equal the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • mod(other: string | number | Long): Long
  • Returns this Long modulo the specified.

    Parameters

    • other: string | number | Long

    Returns Long

  • modulo(other: string | number | Long): Long
  • Returns this Long modulo the specified.

    Parameters

    • other: string | number | Long

    Returns Long

  • mul(multiplier: string | number | Long): Long
  • Returns the product of this and the specified Long.

    Parameters

    • multiplier: string | number | Long

    Returns Long

  • multiply(multiplier: string | number | Long): Long
  • Returns the product of this and the specified Long.

    Parameters

    • multiplier: string | number | Long

    Returns Long

  • ne(other: string | number | Long): boolean
  • Tests if this Long's value differs from the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • Negates this Long's value.

    Returns Long

  • Negates this Long's value.

    Returns Long

  • neq(other: string | number | Long): boolean
  • Tests if this Long's value differs from the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • Returns the bitwise NOT of this Long.

    Returns Long

  • notEquals(other: string | number | Long): boolean
  • Tests if this Long's value differs from the specified's.

    Parameters

    • other: string | number | Long

    Returns boolean

  • Returns the bitwise OR of this Long and the specified.

    Parameters

    • other: string | number | Long

    Returns Long

  • rem(other: string | number | Long): Long
  • Returns this Long modulo the specified.

    Parameters

    • other: string | number | Long

    Returns Long

  • rotateLeft(numBits: number | Long): Long
  • Returns this Long with bits rotated to the left by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • rotateRight(numBits: number | Long): Long
  • Returns this Long with bits rotated to the right by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • Returns this Long with bits rotated to the left by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • Returns this Long with bits rotated to the right by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • Returns this Long with bits shifted to the left by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • shiftRight(numBits: number | Long): Long
  • Returns this Long with bits arithmetically shifted to the right by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • shiftRightUnsigned(numBits: number | Long): Long
  • Returns this Long with bits logically shifted to the right by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • Returns this Long with bits shifted to the left by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • Returns this Long with bits arithmetically shifted to the right by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • Returns this Long with bits logically shifted to the right by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • Returns this Long with bits logically shifted to the right by the given amount.

    Parameters

    • numBits: number | Long

    Returns Long

  • sub(subtrahend: string | number | Long): Long
  • Returns the difference of this and the specified Long.

    Parameters

    • subtrahend: string | number | Long

    Returns Long

  • subtract(subtrahend: string | number | Long): Long
  • Returns the difference of this and the specified Long.

    Parameters

    • subtrahend: string | number | Long

    Returns Long

  • toBytes(le?: boolean): number[]
  • Converts this Long to its byte representation.

    Parameters

    • Optional le: boolean

    Returns number[]

  • toBytesBE(): number[]
  • Converts this Long to its big endian byte representation.

    Returns number[]

  • toBytesLE(): number[]
  • Converts this Long to its little endian byte representation.

    Returns number[]

  • toInt(): number
  • Converts the Long to a 32 bit integer, assuming it is a 32 bit integer.

    Returns number

  • toNumber(): number
  • Converts the Long to a the nearest floating-point representation of this value (double, 53 bit mantissa).

    Returns number

  • Converts this Long to signed.

    Returns Long

  • toString(radix?: number): string
  • Converts the Long to a string written in the specified radix.

    Parameters

    • Optional radix: number

    Returns string

  • Converts this Long to unsigned.

    Returns Long

  • xor(other: string | number | Long): Long
  • Returns the bitwise XOR of this Long and the given one.

    Parameters

    • other: string | number | Long

    Returns Long

Constructors

  • new Long(low: number, high?: number, unsigned?: boolean): Long
  • Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as signed integers. See the from* functions below for more convenient ways of constructing Longs.

    Parameters

    • low: number
    • Optional high: number
    • Optional unsigned: boolean

    Returns Long

Generated using TypeDoc