@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
55 lines (45 loc) • 903 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.bind = bind;
exports.bind_ = bind_;
exports.do = void 0;
exports.let = let__;
exports.let_ = let_;
var _core = /*#__PURE__*/require("./core.js");
/**
* Binds an effectful value in a `do` scope
*
* @ets_data_first bind_
*/
function bind(tag, f) {
return mk => bind_(mk, tag, f);
}
/**
* Binds an effectful value in a `do` scope
*/
function bind_(mk, tag, f) {
return (0, _core.chain_)(mk, k => (0, _core.map_)(f(k), a => ({ ...k,
[tag]: a
})));
}
/**
* Like bind for values
*
* @ets_data_first let_
*/
function let__(tag, f) {
return mk => let_(mk, tag, f);
}
/**
* Like bind for values
*/
function let_(mk, tag, f) {
return (0, _core.map_)(mk, k => ({ ...k,
[tag]: f(k)
}));
}
const do_ = /*#__PURE__*/(0, _core.succeed)({});
exports.do = do_;
//# sourceMappingURL=do.js.map