uintN

Bigint with fixed length. The length is (N*64)bit. Ex. if you use uintN!2, it mean uint128.

struct uintN (
int N
) if (
N >= 1
) {
ulong[N] d;
}

Meta