@microsoft/ccf-app
    Preparing search index...

    Variable uint64Const

    uint64: DataConverter<bigint> = ...

    Converter for bigint values, encoded as uint64.

    Example:

    const n = 2n ** 53n + 1n; // larger than Number.MAX_SAFE_INTEGER
    const buf = ccfapp.uint64.encode(n); // ArrayBuffer of size 8
    const val = ccfapp.uint64.decode(buf); // bigint