UNPKG

@effect-ts/system

Version:

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

63 lines (51 loc) 1.09 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.forEach = forEach; exports.forEach_ = forEach_; var _definition = /*#__PURE__*/require("../definition.js"); /** * Iterate over the chunk applying f */ function forEach_(self, f) { ; switch (self._typeId) { case _definition.ArrTypeId: { const arr = self.arrayLike(); const len = arr.length; let i = 0; while (i < len) { f(arr[i]); i++; } return; } default: { const iterator = self.arrayLikeIterator(); let next; while ((next = iterator.next()) && !next.done) { const array = next.value; const len = array.length; let i = 0; while (i < len) { const a = array[i]; f(a); i++; } } return; } } } /** * Iterate over the chunk applying f * * @ets_data_first forEach_ */ function forEach(f) { return self => forEach_(self, f); } //# sourceMappingURL=forEach.js.map