Get max value.
import { integers } from "@protofire/subgraph-devkit";import { BigInt } from "@graphprotocol/graph-ts";const a = BigInt.fromI32(100);const b = BigInt.fromI32(101);integers.max(a, b); // => 101
the max value.
the BigInt number.
Generated using TypeDoc
Get max value.
Example
Returns
the max value.