UNPKG

@effect-ts/system

Version:

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

75 lines (57 loc) 2.69 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.bindAll = bindAll; exports.bindAllPar = bindAllPar; exports.bindAllPar_ = bindAllPar_; exports.bindAll_ = bindAll_; var R = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("../Collections/Immutable/Dictionary/index.js")); var _core = /*#__PURE__*/require("./core.js"); var _exclForEach = /*#__PURE__*/require("./excl-forEach.js"); function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } // ets_tracing: off /** * Bind a record of effects in a do * * @ets_data_first bindAll_ */ function bindAll(r) { // @ts-expect-error return s => bindAll_(s, r); } /** * Bind a record of effects in a do */ function bindAll_(s, r) { return (0, _core.chain_)(s, k => (0, _core.map_)((0, _exclForEach.forEach_)(R.collect_(r(k), (k, v) => [k, v]), ([_, e]) => (0, _core.map_)(e, a => [_, a])), values => { const res = {}; for (const [k, v] of values) { res[k] = v; } return Object.assign(res, k); })); } /** * Bind a record of effects, in parallel, in a do * * @ets_data_first bindAllPar_ */ function bindAllPar(r) { // @ts-expect-error return s => bindAllPar_(s, r); } /** * Bind a record of effects, in parallel, in a do */ function bindAllPar_(s, r) { return (0, _core.chain_)(s, k => (0, _core.map_)((0, _exclForEach.forEachPar_)(R.collect_(r(k), (k, v) => [k, v]), ([_, e]) => (0, _core.map_)(e, a => [_, a])), values => { const res = {}; for (const [k, v] of values) { res[k] = v; } return Object.assign(res, k); })); } //# sourceMappingURL=bindAll.js.map