init component
This commit is contained in:
48
node_modules/fp-ts/lib/Field.js
generated
vendored
Normal file
48
node_modules/fp-ts/lib/Field.js
generated
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.fieldNumber = void 0;
|
||||
exports.gcd = gcd;
|
||||
exports.lcm = lcm;
|
||||
// -------------------------------------------------------------------------------------
|
||||
// utils
|
||||
// -------------------------------------------------------------------------------------
|
||||
/**
|
||||
* The *greatest common divisor* of two values
|
||||
*
|
||||
* @since 2.0.0
|
||||
*/
|
||||
function gcd(E, field) {
|
||||
var zero = field.zero;
|
||||
var f = function (x, y) { return (E.equals(y, zero) ? x : f(y, field.mod(x, y))); };
|
||||
return f;
|
||||
}
|
||||
/**
|
||||
* The *least common multiple* of two values
|
||||
*
|
||||
* @since 2.0.0
|
||||
*/
|
||||
function lcm(E, F) {
|
||||
var zero = F.zero;
|
||||
var gcdSF = gcd(E, F);
|
||||
return function (x, y) { return (E.equals(x, zero) || E.equals(y, zero) ? zero : F.div(F.mul(x, y), gcdSF(x, y))); };
|
||||
}
|
||||
// -------------------------------------------------------------------------------------
|
||||
// deprecated
|
||||
// -------------------------------------------------------------------------------------
|
||||
/**
|
||||
* Use [`Field`](./number.ts.html#field) instead.
|
||||
*
|
||||
* @category zone of death
|
||||
* @since 2.0.0
|
||||
* @deprecated
|
||||
*/
|
||||
exports.fieldNumber = {
|
||||
add: function (x, y) { return x + y; },
|
||||
zero: 0,
|
||||
mul: function (x, y) { return x * y; },
|
||||
one: 1,
|
||||
sub: function (x, y) { return x - y; },
|
||||
degree: function (_) { return 1; },
|
||||
div: function (x, y) { return x / y; },
|
||||
mod: function (x, y) { return x % y; }
|
||||
};
|
||||
Reference in New Issue
Block a user