Const
Converter for bigint values, encoded as int64.
bigint
int64
Example:
const n = 2n ** 53n + 1n; // larger than Number.MAX_SAFE_INTEGERconst buf = ccfapp.int64.encode(n); // ArrayBuffer of size 8const val = ccfapp.int64.decode(buf); // bigint Copy
const n = 2n ** 53n + 1n; // larger than Number.MAX_SAFE_INTEGERconst buf = ccfapp.int64.encode(n); // ArrayBuffer of size 8const val = ccfapp.int64.decode(buf); // bigint
Converter for
bigint
values, encoded asint64
.Example: