@dialog-db/query
Version:
Datalog query engine inspired by Datomic
27 lines • 733 B
TypeScript
export function addition({ of, with: by }: {
of: API.Numeric;
with: API.Numeric;
}): API.Numeric[];
export function subtraction({ of, by }: {
of: API.Numeric;
by: API.Numeric;
}): API.Numeric[];
export function multiplication({ of, by }: {
of: API.Numeric;
by: API.Numeric;
}): API.Numeric[];
export function division({ of, by }: {
of: API.Numeric;
by: API.Numeric;
}): API.Numeric[];
export function modulo({ of, by }: {
of: API.Numeric;
by: API.Numeric;
}): API.Numeric[];
export function power({ of, by: exponent }: {
of: API.Numeric;
by: API.Numeric;
}): number[];
export function absolute(of: number): number[];
import * as API from '../api.js';
//# sourceMappingURL=math.d.ts.map