39 lines
1.4 KiB
JavaScript
39 lines
1.4 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getFunctionSemiring = void 0;
|
|
/**
|
|
* The `Semiring` class is for types that support an addition and multiplication operation.
|
|
*
|
|
* Instances must satisfy the following laws:
|
|
*
|
|
* - Commutative monoid under addition:
|
|
* - Associativity: `(a + b) + c <-> a + (b + c)`
|
|
* - Identity: `zero + a = a + zero <-> a`
|
|
* - Commutative: `a + b <-> b + a`
|
|
* - Monoid under multiplication:
|
|
* - Associativity: `(a * b) * c <-> a * (b * c)`
|
|
* - Identity: `one * a <-> a * one <-> a`
|
|
* - Multiplication distributes over addition:
|
|
* - Left distributivity: `a * (b + c) <-> (a * b) + (a * c)`
|
|
* - Right distributivity: `(a + b) * c <-> (a * c) + (b * c)`
|
|
* - Annihilation: `zero * a <-> a * zero <-> zero`
|
|
*
|
|
* **Note:** The `number` type is not fully law abiding members of this class hierarchy due to the potential
|
|
* for arithmetic overflows, and the presence of `NaN` and `Infinity` values. The behaviour is
|
|
* unspecified in these cases.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
var function_1 = require("./function");
|
|
// -------------------------------------------------------------------------------------
|
|
// deprecated
|
|
// -------------------------------------------------------------------------------------
|
|
/**
|
|
* Use [`getSemiring`](./function.ts.html#getsemiring) instead.
|
|
*
|
|
* @category zone of death
|
|
* @since 2.0.0
|
|
* @deprecated
|
|
*/
|
|
exports.getFunctionSemiring = function_1.getSemiring;
|