Class: BaseValue

BaseValue(size, value, isSigned)

Represents a base integer.

Constructor

new BaseValue(size, value, isSigned)

Creates a base value.
Parameters:
Name Type Default Description
size number Size of the integer.
value number | BigInt Value.
isSigned boolean false Should the value be treated as signed.
Source:

Methods

toString() → {string}

Converts base value to string.
Source:
Returns:
String representation.
Type
string