Table of contents


one (constant)

Signature

export const one = ...

ord (constant)

Signature

export const ord: Ord<BigInteger> = ...

ring (constant)

Signature

export const ring: Ring<BigInteger> = ...

setoid (constant)

Signature

export const setoid: Setoid<BigInteger> = ...

two (constant)

Signature

export const two = ...

zero (constant)

Signature

export const zero = ...

add (function)

Signature

export function add(x: BigInteger, y: BigInteger): BigInteger { ... }

gcd (function)

Signature

export function gcd(x: BigInteger, y: BigInteger): BigInteger { ... }

lcm (function)

Signature

export function lcm(x: BigInteger, y: BigInteger): BigInteger { ... }

mul (function)

Signature

export function mul(x: BigInteger, y: BigInteger): BigInteger { ... }

negate (function)

Signature

export function negate(x: BigInteger): BigInteger { ... }

sub (function)

Signature

export function sub(x: BigInteger, y: BigInteger): BigInteger { ... }

wrap (function)

Signature

export function wrap(x: number | string): Option<BigInteger> { ... }