UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

59 lines (47 loc) 1.03 kB
"use strict"; 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"); var _map = /*#__PURE__*/require("./map.js"); // ets_tracing: off /** * Binds an effectful value in a `do` scope * * @ets_data_first bind_ */ function bind(tag, f, __trace) { return mk => bind_(mk, tag, f, __trace); } /** * Binds an effectful value in a `do` scope */ function bind_(mk, tag, f, __trace) { return (0, _core.chain_)(mk, k => (0, _map.map_)(f(k), a => ({ ...k, [tag]: a })), __trace); } /** * Like bind for values * * @ets_data_first let_ */ function let__(tag, f, __trace) { return mk => let_(mk, tag, f); } /** * Like bind for values */ function let_(mk, tag, f, __trace) { return (0, _map.map_)(mk, k => ({ ...k, [tag]: f(k) }), __trace); } const do_ = /*#__PURE__*/(0, _core.succeed)({}); exports.do = do_; //# sourceMappingURL=do.js.map