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

    Variable int64Const

    int64: DataConverter<bigint> = ...

    Converter for bigint values, encoded as int64.

    Example:

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