thi-ng/umbrella

View on GitHub
packages/vectors/src/adds.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { VecOpSGVV, VecOpSVV } from "./api.js";
import { defOpS } from "./compile/emit.js";
import { MATH } from "./compile/templates.js";

export const [addS, addS2, addS3, addS4] = defOpS<VecOpSGVV, VecOpSVV>(
    MATH("+")
);