Table of contents
- one (constant)
- ord (constant)
- ring (constant)
- setoid (constant)
- two (constant)
- zero (constant)
- add (function)
- gcd (function)
- lcm (function)
- mul (function)
- negate (function)
- sub (function)
- wrap (function)
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> { ... }