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