Aktueller Stand

This commit is contained in:
2026-01-23 01:33:35 +01:00
parent 082dc5e110
commit 2766dd12c5
10109 changed files with 1578841 additions and 77685 deletions

View File

@@ -0,0 +1,16 @@
import { dual } from "../Function.js";
/** @internal */
export const let_ = map => dual(3, (self, name, f) => map(self, a => ({
...a,
[name]: f(a)
})));
/** @internal */
export const bindTo = map => dual(2, (self, name) => map(self, a => ({
[name]: a
})));
/** @internal */
export const bind = (map, flatMap) => dual(3, (self, name, f) => flatMap(self, a => map(f(a), b => ({
...a,
[name]: b
}))));
//# sourceMappingURL=doNotation.js.map