Appearance
Home > resol-vbus-core > utils > writeBigInt64LE
utils.writeBigInt64LE() function
Write a little-endian signed 64 bit BigInt.
Signature:
typescript
export declare function writeBigInt64LE(buffer: Uint8Array, offset: number, value: bigint): void;
Parameters
Parameter | Type | Description |
---|---|---|
buffer | Uint8Array | The buffer to write to. |
offset | number | The offset inside the buffer to write to. |
value | bigint | The bigint value to write. |
void