16 lines
484 B
TypeScript
16 lines
484 B
TypeScript
/**
|
|
* Some common functions for modular arithmetic using native JS implementation of BigInt
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
export { abs } from './abs';
|
|
export { bitLength } from './bitLength';
|
|
export { Egcd, eGcd } from './egcd';
|
|
export { gcd } from './gcd';
|
|
export { lcm } from './lcm';
|
|
export { max } from './max';
|
|
export { min } from './min';
|
|
export { modInv } from './modInv';
|
|
export { modPow } from './modPow';
|
|
export { toZn } from './toZn';
|
|
//# sourceMappingURL=index.d.ts.map
|