@typed/fx 0.0.35 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1555) hide show
  1. package/coverage/base.css +224 -0
  2. package/coverage/block-navigation.js +87 -0
  3. package/coverage/clover.xml +1483 -0
  4. package/coverage/coverage-final.json +40 -0
  5. package/coverage/favicon.png +0 -0
  6. package/coverage/index.html +191 -0
  7. package/coverage/prettify.css +1 -0
  8. package/coverage/prettify.js +2 -0
  9. package/coverage/sort-arrow-sprite.png +0 -0
  10. package/coverage/sorter.js +196 -0
  11. package/coverage/src/Fx.ts.html +274 -0
  12. package/coverage/src/Subject/Subject.ts.html +214 -0
  13. package/coverage/src/Subject/index.html +116 -0
  14. package/coverage/src/_internal/RefCounter.ts.html +313 -0
  15. package/coverage/src/_internal/earlyExit.ts.html +136 -0
  16. package/coverage/src/_internal/index.html +131 -0
  17. package/coverage/src/constructor/at.ts.html +118 -0
  18. package/coverage/src/constructor/fromArray.ts.html +148 -0
  19. package/coverage/src/constructor/fromEffect.ts.html +148 -0
  20. package/coverage/src/constructor/fromEmitter.ts.html +265 -0
  21. package/coverage/src/constructor/fromIterable.ts.html +172 -0
  22. package/coverage/src/constructor/index.html +236 -0
  23. package/coverage/src/constructor/never.ts.html +133 -0
  24. package/coverage/src/constructor/serviceWith.ts.html +118 -0
  25. package/coverage/src/constructor/succeed.ts.html +139 -0
  26. package/coverage/src/constructor/suspend.ts.html +130 -0
  27. package/coverage/src/index.html +116 -0
  28. package/coverage/src/operator/concatMap.ts.html +112 -0
  29. package/coverage/src/operator/continueWith.ts.html +169 -0
  30. package/coverage/src/operator/delay.ts.html +142 -0
  31. package/coverage/src/operator/filter.ts.html +190 -0
  32. package/coverage/src/operator/filterEffect.ts.html +214 -0
  33. package/coverage/src/operator/filterMap.ts.html +190 -0
  34. package/coverage/src/operator/filterMapEffect.ts.html +217 -0
  35. package/coverage/src/operator/flatMap.ts.html +211 -0
  36. package/coverage/src/operator/flatMapConcurrently.ts.html +136 -0
  37. package/coverage/src/operator/index.html +431 -0
  38. package/coverage/src/operator/loop.ts.html +214 -0
  39. package/coverage/src/operator/map.ts.html +163 -0
  40. package/coverage/src/operator/merge.ts.html +235 -0
  41. package/coverage/src/operator/multicast.ts.html +424 -0
  42. package/coverage/src/operator/provideService.ts.html +154 -0
  43. package/coverage/src/operator/provideServiceEffect.ts.html +190 -0
  44. package/coverage/src/operator/scan.ts.html +142 -0
  45. package/coverage/src/operator/scanEffect.ts.html +283 -0
  46. package/coverage/src/operator/skipRepeats.ts.html +214 -0
  47. package/coverage/src/operator/slice.ts.html +217 -0
  48. package/coverage/src/operator/startWith.ts.html +127 -0
  49. package/coverage/src/operator/switchMap.ts.html +295 -0
  50. package/coverage/src/operator/withPermit.ts.html +139 -0
  51. package/coverage/src/run/collectAll.ts.html +136 -0
  52. package/coverage/src/run/index.html +161 -0
  53. package/coverage/src/run/observe.ts.html +142 -0
  54. package/coverage/src/run/reduce.ts.html +145 -0
  55. package/coverage/src/run/run.ts.html +232 -0
  56. package/coverage/tmp/coverage-13497-1671499520588-32.json +1 -0
  57. package/coverage/tmp/coverage-13497-1671499520647-31.json +1 -0
  58. package/coverage/tmp/coverage-13497-1671499520712-30.json +1 -0
  59. package/coverage/tmp/coverage-13497-1671499520782-26.json +1 -0
  60. package/coverage/tmp/coverage-13497-1671499520842-29.json +1 -0
  61. package/coverage/tmp/coverage-13497-1671499520906-28.json +1 -0
  62. package/coverage/tmp/coverage-13497-1671499520969-27.json +1 -0
  63. package/dist/Fx.d.ts +36 -0
  64. package/dist/Fx.d.ts.map +1 -0
  65. package/dist/Fx.js +34 -0
  66. package/dist/Fx.js.map +1 -0
  67. package/dist/Subject/HoldSubject.d.ts +23 -0
  68. package/dist/Subject/HoldSubject.d.ts.map +1 -0
  69. package/dist/Subject/HoldSubject.js +43 -0
  70. package/dist/Subject/HoldSubject.js.map +1 -0
  71. package/dist/Subject/RefSubject.d.ts +16 -0
  72. package/dist/Subject/RefSubject.d.ts.map +1 -0
  73. package/dist/Subject/RefSubject.js +68 -0
  74. package/dist/Subject/RefSubject.js.map +1 -0
  75. package/dist/Subject/Subject.d.ts +18 -0
  76. package/dist/Subject/Subject.d.ts.map +1 -0
  77. package/dist/Subject/Subject.js +38 -0
  78. package/dist/Subject/Subject.js.map +1 -0
  79. package/dist/Subject/SynchronizedSubject.d.ts +12 -0
  80. package/dist/Subject/SynchronizedSubject.d.ts.map +1 -0
  81. package/dist/Subject/SynchronizedSubject.js +82 -0
  82. package/dist/Subject/SynchronizedSubject.js.map +1 -0
  83. package/dist/Subject/index.d.ts +5 -0
  84. package/dist/Subject/index.d.ts.map +1 -0
  85. package/dist/Subject/index.js +5 -0
  86. package/dist/Subject/index.js.map +1 -0
  87. package/dist/_internal/RefCounter.d.ts +21 -0
  88. package/dist/_internal/RefCounter.d.ts.map +1 -0
  89. package/dist/_internal/RefCounter.js +40 -0
  90. package/dist/_internal/RefCounter.js.map +1 -0
  91. package/dist/_internal/earlyExit.d.ts +3 -0
  92. package/dist/_internal/earlyExit.d.ts.map +1 -0
  93. package/dist/_internal/earlyExit.js +6 -0
  94. package/dist/_internal/earlyExit.js.map +1 -0
  95. package/dist/_internal/entriesOf.d.ts +2 -0
  96. package/dist/_internal/entriesOf.d.ts.map +1 -0
  97. package/dist/_internal/entriesOf.js +4 -0
  98. package/dist/_internal/entriesOf.js.map +1 -0
  99. package/dist/constructor/Do.d.ts +2 -0
  100. package/dist/constructor/Do.d.ts.map +1 -0
  101. package/dist/constructor/Do.js +3 -0
  102. package/dist/constructor/Do.js.map +1 -0
  103. package/dist/constructor/acquireUseRelease.d.ts +4 -0
  104. package/dist/constructor/acquireUseRelease.d.ts.map +1 -0
  105. package/dist/constructor/acquireUseRelease.js +16 -0
  106. package/dist/constructor/acquireUseRelease.js.map +1 -0
  107. package/dist/constructor/async.d.ts +5 -0
  108. package/dist/constructor/async.d.ts.map +1 -0
  109. package/dist/constructor/async.js +5 -0
  110. package/dist/constructor/async.js.map +1 -0
  111. package/dist/constructor/asyncEffect.d.ts +4 -0
  112. package/dist/constructor/asyncEffect.d.ts.map +1 -0
  113. package/dist/constructor/asyncEffect.js +5 -0
  114. package/dist/constructor/asyncEffect.js.map +1 -0
  115. package/dist/constructor/asyncInterrupt.d.ts +5 -0
  116. package/dist/constructor/asyncInterrupt.d.ts.map +1 -0
  117. package/dist/constructor/asyncInterrupt.js +4 -0
  118. package/dist/constructor/asyncInterrupt.js.map +1 -0
  119. package/dist/constructor/asyncOption.d.ts +6 -0
  120. package/dist/constructor/asyncOption.d.ts.map +1 -0
  121. package/dist/constructor/asyncOption.js +5 -0
  122. package/dist/constructor/asyncOption.js.map +1 -0
  123. package/dist/constructor/at.d.ts +4 -0
  124. package/dist/constructor/at.d.ts.map +1 -0
  125. package/dist/constructor/at.js +7 -0
  126. package/dist/constructor/at.js.map +1 -0
  127. package/dist/constructor/die.d.ts +3 -0
  128. package/dist/constructor/die.d.ts.map +1 -0
  129. package/dist/constructor/die.js +5 -0
  130. package/dist/constructor/die.js.map +1 -0
  131. package/dist/constructor/dieMessage.d.ts +3 -0
  132. package/dist/constructor/dieMessage.d.ts.map +1 -0
  133. package/dist/constructor/dieMessage.js +5 -0
  134. package/dist/constructor/dieMessage.js.map +1 -0
  135. package/dist/constructor/dieSync.d.ts +3 -0
  136. package/dist/constructor/dieSync.d.ts.map +1 -0
  137. package/dist/constructor/dieSync.js +5 -0
  138. package/dist/constructor/dieSync.js.map +1 -0
  139. package/dist/constructor/done.d.ts +4 -0
  140. package/dist/constructor/done.d.ts.map +1 -0
  141. package/dist/constructor/done.js +17 -0
  142. package/dist/constructor/done.js.map +1 -0
  143. package/dist/constructor/empty.d.ts +3 -0
  144. package/dist/constructor/empty.d.ts.map +1 -0
  145. package/dist/constructor/empty.js +11 -0
  146. package/dist/constructor/empty.js.map +1 -0
  147. package/dist/constructor/fail.d.ts +3 -0
  148. package/dist/constructor/fail.d.ts.map +1 -0
  149. package/dist/constructor/fail.js +5 -0
  150. package/dist/constructor/fail.js.map +1 -0
  151. package/dist/constructor/failCause.d.ts +4 -0
  152. package/dist/constructor/failCause.d.ts.map +1 -0
  153. package/dist/constructor/failCause.js +5 -0
  154. package/dist/constructor/failCause.js.map +1 -0
  155. package/dist/constructor/failCauseSync.d.ts +4 -0
  156. package/dist/constructor/failCauseSync.d.ts.map +1 -0
  157. package/dist/constructor/failCauseSync.js +5 -0
  158. package/dist/constructor/failCauseSync.js.map +1 -0
  159. package/dist/constructor/fromArray.d.ts +3 -0
  160. package/dist/constructor/fromArray.d.ts.map +1 -0
  161. package/dist/constructor/fromArray.js +16 -0
  162. package/dist/constructor/fromArray.js.map +1 -0
  163. package/dist/constructor/fromEffect.d.ts +4 -0
  164. package/dist/constructor/fromEffect.d.ts.map +1 -0
  165. package/dist/constructor/fromEffect.js +16 -0
  166. package/dist/constructor/fromEffect.js.map +1 -0
  167. package/dist/constructor/fromEither.d.ts +4 -0
  168. package/dist/constructor/fromEither.d.ts.map +1 -0
  169. package/dist/constructor/fromEither.js +5 -0
  170. package/dist/constructor/fromEither.js.map +1 -0
  171. package/dist/constructor/fromEitherCause.d.ts +5 -0
  172. package/dist/constructor/fromEitherCause.d.ts.map +1 -0
  173. package/dist/constructor/fromEitherCause.js +5 -0
  174. package/dist/constructor/fromEitherCause.js.map +1 -0
  175. package/dist/constructor/fromEmitter.d.ts +12 -0
  176. package/dist/constructor/fromEmitter.d.ts.map +1 -0
  177. package/dist/constructor/fromEmitter.js +33 -0
  178. package/dist/constructor/fromEmitter.js.map +1 -0
  179. package/dist/constructor/fromFiber.d.ts +4 -0
  180. package/dist/constructor/fromFiber.d.ts.map +1 -0
  181. package/dist/constructor/fromFiber.js +5 -0
  182. package/dist/constructor/fromFiber.js.map +1 -0
  183. package/dist/constructor/fromFiberEffect.d.ts +5 -0
  184. package/dist/constructor/fromFiberEffect.d.ts.map +1 -0
  185. package/dist/constructor/fromFiberEffect.js +5 -0
  186. package/dist/constructor/fromFiberEffect.js.map +1 -0
  187. package/dist/constructor/fromFxEffect.d.ts +4 -0
  188. package/dist/constructor/fromFxEffect.d.ts.map +1 -0
  189. package/dist/constructor/fromFxEffect.js +16 -0
  190. package/dist/constructor/fromFxEffect.js.map +1 -0
  191. package/dist/constructor/fromFxEffectGen.d.ts +5 -0
  192. package/dist/constructor/fromFxEffectGen.d.ts.map +1 -0
  193. package/dist/constructor/fromFxEffectGen.js +6 -0
  194. package/dist/constructor/fromFxEffectGen.js.map +1 -0
  195. package/dist/constructor/fromIterable.d.ts +3 -0
  196. package/dist/constructor/fromIterable.d.ts.map +1 -0
  197. package/dist/constructor/fromIterable.js +24 -0
  198. package/dist/constructor/fromIterable.js.map +1 -0
  199. package/dist/constructor/fromOption.d.ts +4 -0
  200. package/dist/constructor/fromOption.d.ts.map +1 -0
  201. package/dist/constructor/fromOption.js +5 -0
  202. package/dist/constructor/fromOption.js.map +1 -0
  203. package/dist/constructor/gen.d.ts +14 -0
  204. package/dist/constructor/gen.d.ts.map +1 -0
  205. package/dist/constructor/gen.js +12 -0
  206. package/dist/constructor/gen.js.map +1 -0
  207. package/dist/constructor/genFx.d.ts +5 -0
  208. package/dist/constructor/genFx.d.ts.map +1 -0
  209. package/dist/constructor/genFx.js +6 -0
  210. package/dist/constructor/genFx.js.map +1 -0
  211. package/dist/constructor/index.d.ts +46 -0
  212. package/dist/constructor/index.d.ts.map +1 -0
  213. package/dist/constructor/index.js +46 -0
  214. package/dist/constructor/index.js.map +1 -0
  215. package/dist/constructor/never.d.ts +3 -0
  216. package/dist/constructor/never.d.ts.map +1 -0
  217. package/dist/constructor/never.js +13 -0
  218. package/dist/constructor/never.js.map +1 -0
  219. package/dist/constructor/periodic.d.ts +4 -0
  220. package/dist/constructor/periodic.d.ts.map +1 -0
  221. package/dist/constructor/periodic.js +9 -0
  222. package/dist/constructor/periodic.js.map +1 -0
  223. package/dist/constructor/promise.d.ts +3 -0
  224. package/dist/constructor/promise.d.ts.map +1 -0
  225. package/dist/constructor/promise.js +5 -0
  226. package/dist/constructor/promise.js.map +1 -0
  227. package/dist/constructor/promiseAbort.d.ts +3 -0
  228. package/dist/constructor/promiseAbort.d.ts.map +1 -0
  229. package/dist/constructor/promiseAbort.js +5 -0
  230. package/dist/constructor/promiseAbort.js.map +1 -0
  231. package/dist/constructor/promiseFx.d.ts +6 -0
  232. package/dist/constructor/promiseFx.d.ts.map +1 -0
  233. package/dist/constructor/promiseFx.js +8 -0
  234. package/dist/constructor/promiseFx.js.map +1 -0
  235. package/dist/constructor/random.d.ts +4 -0
  236. package/dist/constructor/random.d.ts.map +1 -0
  237. package/dist/constructor/random.js +5 -0
  238. package/dist/constructor/random.js.map +1 -0
  239. package/dist/constructor/scheduled.d.ts +12 -0
  240. package/dist/constructor/scheduled.d.ts.map +1 -0
  241. package/dist/constructor/scheduled.js +17 -0
  242. package/dist/constructor/scheduled.js.map +1 -0
  243. package/dist/constructor/service.d.ts +4 -0
  244. package/dist/constructor/service.d.ts.map +1 -0
  245. package/dist/constructor/service.js +5 -0
  246. package/dist/constructor/service.js.map +1 -0
  247. package/dist/constructor/serviceWith.d.ts +4 -0
  248. package/dist/constructor/serviceWith.d.ts.map +1 -0
  249. package/dist/constructor/serviceWith.js +5 -0
  250. package/dist/constructor/serviceWith.js.map +1 -0
  251. package/dist/constructor/serviceWithEffect.d.ts +5 -0
  252. package/dist/constructor/serviceWithEffect.d.ts.map +1 -0
  253. package/dist/constructor/serviceWithEffect.js +5 -0
  254. package/dist/constructor/serviceWithEffect.js.map +1 -0
  255. package/dist/constructor/serviceWithFx.d.ts +4 -0
  256. package/dist/constructor/serviceWithFx.d.ts.map +1 -0
  257. package/dist/constructor/serviceWithFx.js +14 -0
  258. package/dist/constructor/serviceWithFx.js.map +1 -0
  259. package/dist/constructor/succeed.d.ts +3 -0
  260. package/dist/constructor/succeed.d.ts.map +1 -0
  261. package/dist/constructor/succeed.js +16 -0
  262. package/dist/constructor/succeed.js.map +1 -0
  263. package/dist/constructor/suspend.d.ts +3 -0
  264. package/dist/constructor/suspend.d.ts.map +1 -0
  265. package/dist/constructor/suspend.js +14 -0
  266. package/dist/constructor/suspend.js.map +1 -0
  267. package/dist/constructor/sync.d.ts +3 -0
  268. package/dist/constructor/sync.d.ts.map +1 -0
  269. package/dist/constructor/sync.js +5 -0
  270. package/dist/constructor/sync.js.map +1 -0
  271. package/dist/constructor/tryCatchPromise.d.ts +3 -0
  272. package/dist/constructor/tryCatchPromise.d.ts.map +1 -0
  273. package/dist/constructor/tryCatchPromise.js +5 -0
  274. package/dist/constructor/tryCatchPromise.js.map +1 -0
  275. package/dist/constructor/tryCatchPromiseAbort.d.ts +3 -0
  276. package/dist/constructor/tryCatchPromiseAbort.d.ts.map +1 -0
  277. package/dist/constructor/tryCatchPromiseAbort.js +5 -0
  278. package/dist/constructor/tryCatchPromiseAbort.js.map +1 -0
  279. package/dist/constructor/tryPromise.d.ts +3 -0
  280. package/dist/constructor/tryPromise.d.ts.map +1 -0
  281. package/dist/constructor/tryPromise.js +5 -0
  282. package/dist/constructor/tryPromise.js.map +1 -0
  283. package/dist/constructor/tryPromiseAbort.d.ts +3 -0
  284. package/dist/constructor/tryPromiseAbort.d.ts.map +1 -0
  285. package/dist/constructor/tryPromiseAbort.js +5 -0
  286. package/dist/constructor/tryPromiseAbort.js.map +1 -0
  287. package/dist/constructor/unit.d.ts +2 -0
  288. package/dist/constructor/unit.d.ts.map +1 -0
  289. package/dist/constructor/unit.js +3 -0
  290. package/dist/constructor/unit.js.map +1 -0
  291. package/dist/index.d.ts +10 -0
  292. package/dist/index.d.ts.map +1 -0
  293. package/dist/index.js +10 -0
  294. package/dist/index.js.map +1 -0
  295. package/dist/operator/as.d.ts +3 -0
  296. package/dist/operator/as.d.ts.map +1 -0
  297. package/dist/operator/as.js +5 -0
  298. package/dist/operator/as.js.map +1 -0
  299. package/dist/operator/asUnit.d.ts +2 -0
  300. package/dist/operator/asUnit.d.ts.map +1 -0
  301. package/dist/operator/asUnit.js +3 -0
  302. package/dist/operator/asUnit.js.map +1 -0
  303. package/dist/operator/catch.d.ts +3 -0
  304. package/dist/operator/catch.d.ts.map +1 -0
  305. package/dist/operator/catch.js +9 -0
  306. package/dist/operator/catch.js.map +1 -0
  307. package/dist/operator/catchAll.d.ts +3 -0
  308. package/dist/operator/catchAll.d.ts.map +1 -0
  309. package/dist/operator/catchAll.js +9 -0
  310. package/dist/operator/catchAll.js.map +1 -0
  311. package/dist/operator/catchAllCause.d.ts +4 -0
  312. package/dist/operator/catchAllCause.d.ts.map +1 -0
  313. package/dist/operator/catchAllCause.js +24 -0
  314. package/dist/operator/catchAllCause.js.map +1 -0
  315. package/dist/operator/catchAllDefect.d.ts +3 -0
  316. package/dist/operator/catchAllDefect.d.ts.map +1 -0
  317. package/dist/operator/catchAllDefect.js +9 -0
  318. package/dist/operator/catchAllDefect.js.map +1 -0
  319. package/dist/operator/combine.d.ts +6 -0
  320. package/dist/operator/combine.d.ts.map +1 -0
  321. package/dist/operator/combine.js +30 -0
  322. package/dist/operator/combine.js.map +1 -0
  323. package/dist/operator/compact.d.ts +4 -0
  324. package/dist/operator/compact.d.ts.map +1 -0
  325. package/dist/operator/compact.js +4 -0
  326. package/dist/operator/compact.js.map +1 -0
  327. package/dist/operator/concatMap.d.ts +3 -0
  328. package/dist/operator/concatMap.d.ts.map +1 -0
  329. package/dist/operator/concatMap.js +5 -0
  330. package/dist/operator/concatMap.js.map +1 -0
  331. package/dist/operator/continueWith.d.ts +3 -0
  332. package/dist/operator/continueWith.d.ts.map +1 -0
  333. package/dist/operator/continueWith.js +25 -0
  334. package/dist/operator/continueWith.js.map +1 -0
  335. package/dist/operator/debounce.d.ts +4 -0
  336. package/dist/operator/debounce.d.ts.map +1 -0
  337. package/dist/operator/debounce.js +27 -0
  338. package/dist/operator/debounce.js.map +1 -0
  339. package/dist/operator/delay.d.ts +4 -0
  340. package/dist/operator/delay.d.ts.map +1 -0
  341. package/dist/operator/delay.js +17 -0
  342. package/dist/operator/delay.js.map +1 -0
  343. package/dist/operator/during.d.ts +3 -0
  344. package/dist/operator/during.d.ts.map +1 -0
  345. package/dist/operator/during.js +30 -0
  346. package/dist/operator/during.js.map +1 -0
  347. package/dist/operator/duringEffect.d.ts +2 -0
  348. package/dist/operator/duringEffect.d.ts.map +1 -0
  349. package/dist/operator/duringEffect.js +2 -0
  350. package/dist/operator/duringEffect.js.map +1 -0
  351. package/dist/operator/exhaustMap.d.ts +3 -0
  352. package/dist/operator/exhaustMap.d.ts.map +1 -0
  353. package/dist/operator/exhaustMap.js +24 -0
  354. package/dist/operator/exhaustMap.js.map +1 -0
  355. package/dist/operator/exhaustMapEffect.d.ts +4 -0
  356. package/dist/operator/exhaustMapEffect.d.ts.map +1 -0
  357. package/dist/operator/exhaustMapEffect.js +7 -0
  358. package/dist/operator/exhaustMapEffect.js.map +1 -0
  359. package/dist/operator/exhaustMapLatest.d.ts +3 -0
  360. package/dist/operator/exhaustMapLatest.d.ts.map +1 -0
  361. package/dist/operator/exhaustMapLatest.js +30 -0
  362. package/dist/operator/exhaustMapLatest.js.map +1 -0
  363. package/dist/operator/exhaustMapLatestEffect.d.ts +4 -0
  364. package/dist/operator/exhaustMapLatestEffect.d.ts.map +1 -0
  365. package/dist/operator/exhaustMapLatestEffect.js +7 -0
  366. package/dist/operator/exhaustMapLatestEffect.js.map +1 -0
  367. package/dist/operator/filter.d.ts +5 -0
  368. package/dist/operator/filter.d.ts.map +1 -0
  369. package/dist/operator/filter.js +32 -0
  370. package/dist/operator/filter.js.map +1 -0
  371. package/dist/operator/filterEffect.d.ts +4 -0
  372. package/dist/operator/filterEffect.d.ts.map +1 -0
  373. package/dist/operator/filterEffect.js +30 -0
  374. package/dist/operator/filterEffect.js.map +1 -0
  375. package/dist/operator/filterMap.d.ts +4 -0
  376. package/dist/operator/filterMap.d.ts.map +1 -0
  377. package/dist/operator/filterMap.js +31 -0
  378. package/dist/operator/filterMap.js.map +1 -0
  379. package/dist/operator/filterMapEffect.d.ts +5 -0
  380. package/dist/operator/filterMapEffect.d.ts.map +1 -0
  381. package/dist/operator/filterMapEffect.js +29 -0
  382. package/dist/operator/filterMapEffect.js.map +1 -0
  383. package/dist/operator/flatMap.d.ts +4 -0
  384. package/dist/operator/flatMap.d.ts.map +1 -0
  385. package/dist/operator/flatMap.js +19 -0
  386. package/dist/operator/flatMap.js.map +1 -0
  387. package/dist/operator/flatMapCause.d.ts +4 -0
  388. package/dist/operator/flatMapCause.d.ts.map +1 -0
  389. package/dist/operator/flatMapCause.js +18 -0
  390. package/dist/operator/flatMapCause.js.map +1 -0
  391. package/dist/operator/flatMapConcurrently.d.ts +3 -0
  392. package/dist/operator/flatMapConcurrently.d.ts.map +1 -0
  393. package/dist/operator/flatMapConcurrently.js +12 -0
  394. package/dist/operator/flatMapConcurrently.js.map +1 -0
  395. package/dist/operator/flatMapEffect.d.ts +4 -0
  396. package/dist/operator/flatMapEffect.d.ts.map +1 -0
  397. package/dist/operator/flatMapEffect.js +7 -0
  398. package/dist/operator/flatMapEffect.js.map +1 -0
  399. package/dist/operator/flatMapEffectConcurrently.d.ts +4 -0
  400. package/dist/operator/flatMapEffectConcurrently.d.ts.map +1 -0
  401. package/dist/operator/flatMapEffectConcurrently.js +7 -0
  402. package/dist/operator/flatMapEffectConcurrently.js.map +1 -0
  403. package/dist/operator/hold.d.ts +26 -0
  404. package/dist/operator/hold.d.ts.map +1 -0
  405. package/dist/operator/hold.js +86 -0
  406. package/dist/operator/hold.js.map +1 -0
  407. package/dist/operator/index.d.ts +84 -0
  408. package/dist/operator/index.d.ts.map +1 -0
  409. package/dist/operator/index.js +84 -0
  410. package/dist/operator/index.js.map +1 -0
  411. package/dist/operator/interruptible.d.ts +3 -0
  412. package/dist/operator/interruptible.d.ts.map +1 -0
  413. package/dist/operator/interruptible.js +16 -0
  414. package/dist/operator/interruptible.js.map +1 -0
  415. package/dist/operator/loop.d.ts +3 -0
  416. package/dist/operator/loop.d.ts.map +1 -0
  417. package/dist/operator/loop.js +32 -0
  418. package/dist/operator/loop.js.map +1 -0
  419. package/dist/operator/map.d.ts +3 -0
  420. package/dist/operator/map.d.ts.map +1 -0
  421. package/dist/operator/map.js +26 -0
  422. package/dist/operator/map.js.map +1 -0
  423. package/dist/operator/mapCause.d.ts +4 -0
  424. package/dist/operator/mapCause.d.ts.map +1 -0
  425. package/dist/operator/mapCause.js +19 -0
  426. package/dist/operator/mapCause.js.map +1 -0
  427. package/dist/operator/mapError.d.ts +3 -0
  428. package/dist/operator/mapError.d.ts.map +1 -0
  429. package/dist/operator/mapError.js +6 -0
  430. package/dist/operator/mapError.js.map +1 -0
  431. package/dist/operator/merge.d.ts +4 -0
  432. package/dist/operator/merge.d.ts.map +1 -0
  433. package/dist/operator/merge.js +20 -0
  434. package/dist/operator/merge.js.map +1 -0
  435. package/dist/operator/multicast.d.ts +29 -0
  436. package/dist/operator/multicast.d.ts.map +1 -0
  437. package/dist/operator/multicast.js +69 -0
  438. package/dist/operator/multicast.js.map +1 -0
  439. package/dist/operator/onDone.d.ts +4 -0
  440. package/dist/operator/onDone.d.ts.map +1 -0
  441. package/dist/operator/onDone.js +9 -0
  442. package/dist/operator/onDone.js.map +1 -0
  443. package/dist/operator/onDoneCause.d.ts +5 -0
  444. package/dist/operator/onDoneCause.d.ts.map +1 -0
  445. package/dist/operator/onDoneCause.js +19 -0
  446. package/dist/operator/onDoneCause.js.map +1 -0
  447. package/dist/operator/onError.d.ts +4 -0
  448. package/dist/operator/onError.d.ts.map +1 -0
  449. package/dist/operator/onError.js +6 -0
  450. package/dist/operator/onError.js.map +1 -0
  451. package/dist/operator/onExit.d.ts +5 -0
  452. package/dist/operator/onExit.d.ts.map +1 -0
  453. package/dist/operator/onExit.js +7 -0
  454. package/dist/operator/onExit.js.map +1 -0
  455. package/dist/operator/onInterrupt.d.ts +6 -0
  456. package/dist/operator/onInterrupt.d.ts.map +1 -0
  457. package/dist/operator/onInterrupt.js +17 -0
  458. package/dist/operator/onInterrupt.js.map +1 -0
  459. package/dist/operator/orDie.d.ts +2 -0
  460. package/dist/operator/orDie.d.ts.map +1 -0
  461. package/dist/operator/orDie.js +2 -0
  462. package/dist/operator/orDie.js.map +1 -0
  463. package/dist/operator/orDieWith.d.ts +2 -0
  464. package/dist/operator/orDieWith.d.ts.map +1 -0
  465. package/dist/operator/orDieWith.js +2 -0
  466. package/dist/operator/orDieWith.js.map +1 -0
  467. package/dist/operator/orElse.d.ts +3 -0
  468. package/dist/operator/orElse.d.ts.map +1 -0
  469. package/dist/operator/orElse.js +5 -0
  470. package/dist/operator/orElse.js.map +1 -0
  471. package/dist/operator/orElseCause.d.ts +2 -0
  472. package/dist/operator/orElseCause.d.ts.map +1 -0
  473. package/dist/operator/orElseCause.js +2 -0
  474. package/dist/operator/orElseCause.js.map +1 -0
  475. package/dist/operator/orElseEither.d.ts +2 -0
  476. package/dist/operator/orElseEither.d.ts.map +1 -0
  477. package/dist/operator/orElseEither.js +2 -0
  478. package/dist/operator/orElseEither.js.map +1 -0
  479. package/dist/operator/orElseFail.d.ts +2 -0
  480. package/dist/operator/orElseFail.d.ts.map +1 -0
  481. package/dist/operator/orElseFail.js +2 -0
  482. package/dist/operator/orElseFail.js.map +1 -0
  483. package/dist/operator/orElseSucceed.d.ts +2 -0
  484. package/dist/operator/orElseSucceed.d.ts.map +1 -0
  485. package/dist/operator/orElseSucceed.js +2 -0
  486. package/dist/operator/orElseSucceed.js.map +1 -0
  487. package/dist/operator/provideEnvironment.d.ts +4 -0
  488. package/dist/operator/provideEnvironment.d.ts.map +1 -0
  489. package/dist/operator/provideEnvironment.js +18 -0
  490. package/dist/operator/provideEnvironment.js.map +1 -0
  491. package/dist/operator/provideLayer.d.ts +4 -0
  492. package/dist/operator/provideLayer.d.ts.map +1 -0
  493. package/dist/operator/provideLayer.js +6 -0
  494. package/dist/operator/provideLayer.js.map +1 -0
  495. package/dist/operator/provideService.d.ts +4 -0
  496. package/dist/operator/provideService.d.ts.map +1 -0
  497. package/dist/operator/provideService.js +20 -0
  498. package/dist/operator/provideService.js.map +1 -0
  499. package/dist/operator/provideServiceEffect.d.ts +5 -0
  500. package/dist/operator/provideServiceEffect.d.ts.map +1 -0
  501. package/dist/operator/provideServiceEffect.js +18 -0
  502. package/dist/operator/provideServiceEffect.js.map +1 -0
  503. package/dist/operator/provideSomeEnvironment.d.ts +4 -0
  504. package/dist/operator/provideSomeEnvironment.d.ts.map +1 -0
  505. package/dist/operator/provideSomeEnvironment.js +18 -0
  506. package/dist/operator/provideSomeEnvironment.js.map +1 -0
  507. package/dist/operator/provideSomeLayer.d.ts +4 -0
  508. package/dist/operator/provideSomeLayer.d.ts.map +1 -0
  509. package/dist/operator/provideSomeLayer.js +17 -0
  510. package/dist/operator/provideSomeLayer.js.map +1 -0
  511. package/dist/operator/race.d.ts +4 -0
  512. package/dist/operator/race.d.ts.map +1 -0
  513. package/dist/operator/race.js +43 -0
  514. package/dist/operator/race.js.map +1 -0
  515. package/dist/operator/sample.d.ts +3 -0
  516. package/dist/operator/sample.d.ts.map +1 -0
  517. package/dist/operator/sample.js +6 -0
  518. package/dist/operator/sample.js.map +1 -0
  519. package/dist/operator/sampleEffect.d.ts +10 -0
  520. package/dist/operator/sampleEffect.d.ts.map +1 -0
  521. package/dist/operator/sampleEffect.js +17 -0
  522. package/dist/operator/sampleEffect.js.map +1 -0
  523. package/dist/operator/sandbox.d.ts +4 -0
  524. package/dist/operator/sandbox.d.ts.map +1 -0
  525. package/dist/operator/sandbox.js +7 -0
  526. package/dist/operator/sandbox.js.map +1 -0
  527. package/dist/operator/scan.d.ts +3 -0
  528. package/dist/operator/scan.d.ts.map +1 -0
  529. package/dist/operator/scan.js +10 -0
  530. package/dist/operator/scan.js.map +1 -0
  531. package/dist/operator/scanEffect.d.ts +4 -0
  532. package/dist/operator/scanEffect.d.ts.map +1 -0
  533. package/dist/operator/scanEffect.js +36 -0
  534. package/dist/operator/scanEffect.js.map +1 -0
  535. package/dist/operator/separate.d.ts +4 -0
  536. package/dist/operator/separate.d.ts.map +1 -0
  537. package/dist/operator/separate.js +13 -0
  538. package/dist/operator/separate.js.map +1 -0
  539. package/dist/operator/since.d.ts +3 -0
  540. package/dist/operator/since.d.ts.map +1 -0
  541. package/dist/operator/since.js +24 -0
  542. package/dist/operator/since.js.map +1 -0
  543. package/dist/operator/skip.d.ts +3 -0
  544. package/dist/operator/skip.d.ts.map +1 -0
  545. package/dist/operator/skip.js +3 -0
  546. package/dist/operator/skip.js.map +1 -0
  547. package/dist/operator/skipAfter.d.ts +4 -0
  548. package/dist/operator/skipAfter.d.ts.map +1 -0
  549. package/dist/operator/skipAfter.js +35 -0
  550. package/dist/operator/skipAfter.js.map +1 -0
  551. package/dist/operator/skipAfterEffect.d.ts +2 -0
  552. package/dist/operator/skipAfterEffect.d.ts.map +1 -0
  553. package/dist/operator/skipAfterEffect.js +2 -0
  554. package/dist/operator/skipAfterEffect.js.map +1 -0
  555. package/dist/operator/skipRepeats.d.ts +4 -0
  556. package/dist/operator/skipRepeats.d.ts.map +1 -0
  557. package/dist/operator/skipRepeats.js +34 -0
  558. package/dist/operator/skipRepeats.js.map +1 -0
  559. package/dist/operator/skipUntil.d.ts +4 -0
  560. package/dist/operator/skipUntil.d.ts.map +1 -0
  561. package/dist/operator/skipUntil.js +32 -0
  562. package/dist/operator/skipUntil.js.map +1 -0
  563. package/dist/operator/skipUntilEffect.d.ts +2 -0
  564. package/dist/operator/skipUntilEffect.d.ts.map +1 -0
  565. package/dist/operator/skipUntilEffect.js +2 -0
  566. package/dist/operator/skipUntilEffect.js.map +1 -0
  567. package/dist/operator/skipWhile.d.ts +4 -0
  568. package/dist/operator/skipWhile.d.ts.map +1 -0
  569. package/dist/operator/skipWhile.js +7 -0
  570. package/dist/operator/skipWhile.js.map +1 -0
  571. package/dist/operator/skipWhileEffect.d.ts +2 -0
  572. package/dist/operator/skipWhileEffect.d.ts.map +1 -0
  573. package/dist/operator/skipWhileEffect.js +2 -0
  574. package/dist/operator/skipWhileEffect.js.map +1 -0
  575. package/dist/operator/slice.d.ts +3 -0
  576. package/dist/operator/slice.d.ts.map +1 -0
  577. package/dist/operator/slice.js +41 -0
  578. package/dist/operator/slice.js.map +1 -0
  579. package/dist/operator/snapshot.d.ts +3 -0
  580. package/dist/operator/snapshot.d.ts.map +1 -0
  581. package/dist/operator/snapshot.js +26 -0
  582. package/dist/operator/snapshot.js.map +1 -0
  583. package/dist/operator/snapshotEffect.d.ts +4 -0
  584. package/dist/operator/snapshotEffect.d.ts.map +1 -0
  585. package/dist/operator/snapshotEffect.js +28 -0
  586. package/dist/operator/snapshotEffect.js.map +1 -0
  587. package/dist/operator/startWith.d.ts +3 -0
  588. package/dist/operator/startWith.d.ts.map +1 -0
  589. package/dist/operator/startWith.js +7 -0
  590. package/dist/operator/startWith.js.map +1 -0
  591. package/dist/operator/startWithEffect.d.ts +4 -0
  592. package/dist/operator/startWithEffect.d.ts.map +1 -0
  593. package/dist/operator/startWithEffect.js +17 -0
  594. package/dist/operator/startWithEffect.js.map +1 -0
  595. package/dist/operator/struct.d.ts +5 -0
  596. package/dist/operator/struct.d.ts.map +1 -0
  597. package/dist/operator/struct.js +8 -0
  598. package/dist/operator/struct.js.map +1 -0
  599. package/dist/operator/suceed.d.ts +2 -0
  600. package/dist/operator/suceed.d.ts.map +1 -0
  601. package/dist/operator/suceed.js +2 -0
  602. package/dist/operator/suceed.js.map +1 -0
  603. package/dist/operator/switchMap.d.ts +4 -0
  604. package/dist/operator/switchMap.d.ts.map +1 -0
  605. package/dist/operator/switchMap.js +28 -0
  606. package/dist/operator/switchMap.js.map +1 -0
  607. package/dist/operator/switchMapCause.d.ts +4 -0
  608. package/dist/operator/switchMapCause.d.ts.map +1 -0
  609. package/dist/operator/switchMapCause.js +27 -0
  610. package/dist/operator/switchMapCause.js.map +1 -0
  611. package/dist/operator/switchMapEffect.d.ts +4 -0
  612. package/dist/operator/switchMapEffect.d.ts.map +1 -0
  613. package/dist/operator/switchMapEffect.js +7 -0
  614. package/dist/operator/switchMapEffect.js.map +1 -0
  615. package/dist/operator/switchMapError.d.ts +5 -0
  616. package/dist/operator/switchMapError.d.ts.map +1 -0
  617. package/dist/operator/switchMapError.js +13 -0
  618. package/dist/operator/switchMapError.js.map +1 -0
  619. package/dist/operator/switchMatch.d.ts +5 -0
  620. package/dist/operator/switchMatch.d.ts.map +1 -0
  621. package/dist/operator/switchMatch.js +37 -0
  622. package/dist/operator/switchMatch.js.map +1 -0
  623. package/dist/operator/take.d.ts +3 -0
  624. package/dist/operator/take.d.ts.map +1 -0
  625. package/dist/operator/take.js +3 -0
  626. package/dist/operator/take.js.map +1 -0
  627. package/dist/operator/takeUntil.d.ts +4 -0
  628. package/dist/operator/takeUntil.d.ts.map +1 -0
  629. package/dist/operator/takeUntil.js +31 -0
  630. package/dist/operator/takeUntil.js.map +1 -0
  631. package/dist/operator/takeUntilEffect.d.ts +2 -0
  632. package/dist/operator/takeUntilEffect.d.ts.map +1 -0
  633. package/dist/operator/takeUntilEffect.js +2 -0
  634. package/dist/operator/takeUntilEffect.js.map +1 -0
  635. package/dist/operator/takeWhile.d.ts +4 -0
  636. package/dist/operator/takeWhile.d.ts.map +1 -0
  637. package/dist/operator/takeWhile.js +7 -0
  638. package/dist/operator/takeWhile.js.map +1 -0
  639. package/dist/operator/takeWhileEffect.d.ts +2 -0
  640. package/dist/operator/takeWhileEffect.d.ts.map +1 -0
  641. package/dist/operator/takeWhileEffect.js +2 -0
  642. package/dist/operator/takeWhileEffect.js.map +1 -0
  643. package/dist/operator/tap.d.ts +6 -0
  644. package/dist/operator/tap.d.ts.map +1 -0
  645. package/dist/operator/tap.js +15 -0
  646. package/dist/operator/tap.js.map +1 -0
  647. package/dist/operator/tapCause.d.ts +5 -0
  648. package/dist/operator/tapCause.d.ts.map +1 -0
  649. package/dist/operator/tapCause.js +18 -0
  650. package/dist/operator/tapCause.js.map +1 -0
  651. package/dist/operator/tapDefect.d.ts +4 -0
  652. package/dist/operator/tapDefect.d.ts.map +1 -0
  653. package/dist/operator/tapDefect.js +9 -0
  654. package/dist/operator/tapDefect.js.map +1 -0
  655. package/dist/operator/tapError.d.ts +4 -0
  656. package/dist/operator/tapError.d.ts.map +1 -0
  657. package/dist/operator/tapError.js +9 -0
  658. package/dist/operator/tapError.js.map +1 -0
  659. package/dist/operator/throttle.d.ts +4 -0
  660. package/dist/operator/throttle.d.ts.map +1 -0
  661. package/dist/operator/throttle.js +20 -0
  662. package/dist/operator/throttle.js.map +1 -0
  663. package/dist/operator/tuple.d.ts +3 -0
  664. package/dist/operator/tuple.d.ts.map +1 -0
  665. package/dist/operator/tuple.js +3 -0
  666. package/dist/operator/tuple.js.map +1 -0
  667. package/dist/operator/uninterruptible.d.ts +3 -0
  668. package/dist/operator/uninterruptible.d.ts.map +1 -0
  669. package/dist/operator/uninterruptible.js +16 -0
  670. package/dist/operator/uninterruptible.js.map +1 -0
  671. package/dist/operator/until.d.ts +3 -0
  672. package/dist/operator/until.d.ts.map +1 -0
  673. package/dist/operator/until.js +23 -0
  674. package/dist/operator/until.js.map +1 -0
  675. package/dist/operator/withItems.d.ts +3 -0
  676. package/dist/operator/withItems.d.ts.map +1 -0
  677. package/dist/operator/withItems.js +6 -0
  678. package/dist/operator/withItems.js.map +1 -0
  679. package/dist/operator/withPermit.d.ts +4 -0
  680. package/dist/operator/withPermit.d.ts.map +1 -0
  681. package/dist/operator/withPermit.js +17 -0
  682. package/dist/operator/withPermit.js.map +1 -0
  683. package/dist/operator/withRuntimeFlags.d.ts +4 -0
  684. package/dist/operator/withRuntimeFlags.d.ts.map +1 -0
  685. package/dist/operator/withRuntimeFlags.js +17 -0
  686. package/dist/operator/withRuntimeFlags.js.map +1 -0
  687. package/dist/operator/zip.d.ts +6 -0
  688. package/dist/operator/zip.d.ts.map +1 -0
  689. package/dist/operator/zip.js +32 -0
  690. package/dist/operator/zip.js.map +1 -0
  691. package/dist/operator/zipItems.d.ts +3 -0
  692. package/dist/operator/zipItems.d.ts.map +1 -0
  693. package/dist/operator/zipItems.js +31 -0
  694. package/dist/operator/zipItems.js.map +1 -0
  695. package/dist/run/collectAll.d.ts +4 -0
  696. package/dist/run/collectAll.d.ts.map +1 -0
  697. package/dist/run/collectAll.js +8 -0
  698. package/dist/run/collectAll.js.map +1 -0
  699. package/dist/run/collectN.d.ts +4 -0
  700. package/dist/run/collectN.d.ts.map +1 -0
  701. package/dist/run/collectN.js +9 -0
  702. package/dist/run/collectN.js.map +1 -0
  703. package/dist/run/drain.d.ts +4 -0
  704. package/dist/run/drain.d.ts.map +1 -0
  705. package/dist/run/drain.js +4 -0
  706. package/dist/run/drain.js.map +1 -0
  707. package/dist/run/index.d.ts +8 -0
  708. package/dist/run/index.d.ts.map +1 -0
  709. package/dist/run/index.js +8 -0
  710. package/dist/run/index.js.map +1 -0
  711. package/dist/run/observe.d.ts +6 -0
  712. package/dist/run/observe.d.ts.map +1 -0
  713. package/dist/run/observe.js +10 -0
  714. package/dist/run/observe.js.map +1 -0
  715. package/dist/run/reduce.d.ts +4 -0
  716. package/dist/run/reduce.d.ts.map +1 -0
  717. package/dist/run/reduce.js +8 -0
  718. package/dist/run/reduce.js.map +1 -0
  719. package/dist/run/run.d.ts +7 -0
  720. package/dist/run/run.d.ts.map +1 -0
  721. package/dist/run/run.js +19 -0
  722. package/dist/run/run.js.map +1 -0
  723. package/dist/run/unsafe.d.ts +15 -0
  724. package/dist/run/unsafe.d.ts.map +1 -0
  725. package/dist/run/unsafe.js +11 -0
  726. package/dist/run/unsafe.js.map +1 -0
  727. package/dist/typeclass/Alternative.d.ts +5 -0
  728. package/dist/typeclass/Alternative.d.ts.map +1 -0
  729. package/dist/typeclass/Alternative.js +11 -0
  730. package/dist/typeclass/Alternative.js.map +1 -0
  731. package/dist/typeclass/Applicative.d.ts +4 -0
  732. package/dist/typeclass/Applicative.d.ts.map +1 -0
  733. package/dist/typeclass/Applicative.js +9 -0
  734. package/dist/typeclass/Applicative.js.map +1 -0
  735. package/dist/typeclass/Bicovariant.d.ts +6 -0
  736. package/dist/typeclass/Bicovariant.d.ts.map +1 -0
  737. package/dist/typeclass/Bicovariant.js +9 -0
  738. package/dist/typeclass/Bicovariant.js.map +1 -0
  739. package/dist/typeclass/Chainable.d.ts +6 -0
  740. package/dist/typeclass/Chainable.d.ts.map +1 -0
  741. package/dist/typeclass/Chainable.js +15 -0
  742. package/dist/typeclass/Chainable.js.map +1 -0
  743. package/dist/typeclass/Coproduct.d.ts +5 -0
  744. package/dist/typeclass/Coproduct.d.ts.map +1 -0
  745. package/dist/typeclass/Coproduct.js +17 -0
  746. package/dist/typeclass/Coproduct.js.map +1 -0
  747. package/dist/typeclass/Covariant.d.ts +11 -0
  748. package/dist/typeclass/Covariant.d.ts.map +1 -0
  749. package/dist/typeclass/Covariant.js +8 -0
  750. package/dist/typeclass/Covariant.js.map +1 -0
  751. package/dist/typeclass/FlatMap.d.ts +6 -0
  752. package/dist/typeclass/FlatMap.d.ts.map +1 -0
  753. package/dist/typeclass/FlatMap.js +13 -0
  754. package/dist/typeclass/FlatMap.js.map +1 -0
  755. package/dist/typeclass/Monad.d.ts +6 -0
  756. package/dist/typeclass/Monad.d.ts.map +1 -0
  757. package/dist/typeclass/Monad.js +19 -0
  758. package/dist/typeclass/Monad.js.map +1 -0
  759. package/dist/typeclass/Of.d.ts +4 -0
  760. package/dist/typeclass/Of.d.ts.map +1 -0
  761. package/dist/typeclass/Of.js +5 -0
  762. package/dist/typeclass/Of.js.map +1 -0
  763. package/dist/typeclass/Pointed.d.ts +4 -0
  764. package/dist/typeclass/Pointed.d.ts.map +1 -0
  765. package/dist/typeclass/Pointed.js +7 -0
  766. package/dist/typeclass/Pointed.js.map +1 -0
  767. package/dist/typeclass/Product.d.ts +4 -0
  768. package/dist/typeclass/Product.d.ts.map +1 -0
  769. package/dist/typeclass/Product.js +9 -0
  770. package/dist/typeclass/Product.js.map +1 -0
  771. package/dist/typeclass/SemiAlternative.d.ts +5 -0
  772. package/dist/typeclass/SemiAlternative.d.ts.map +1 -0
  773. package/dist/typeclass/SemiAlternative.js +11 -0
  774. package/dist/typeclass/SemiAlternative.js.map +1 -0
  775. package/dist/typeclass/SemiApplicative.d.ts +4 -0
  776. package/dist/typeclass/SemiApplicative.d.ts.map +1 -0
  777. package/dist/typeclass/SemiApplicative.js +7 -0
  778. package/dist/typeclass/SemiApplicative.js.map +1 -0
  779. package/dist/typeclass/SemiCoproduct.d.ts +5 -0
  780. package/dist/typeclass/SemiCoproduct.d.ts.map +1 -0
  781. package/dist/typeclass/SemiCoproduct.js +14 -0
  782. package/dist/typeclass/SemiCoproduct.js.map +1 -0
  783. package/dist/typeclass/SemiProduct.d.ts +4 -0
  784. package/dist/typeclass/SemiProduct.d.ts.map +1 -0
  785. package/dist/typeclass/SemiProduct.js +9 -0
  786. package/dist/typeclass/SemiProduct.js.map +1 -0
  787. package/dist/typeclass/TypeLambda.d.ts +6 -0
  788. package/dist/typeclass/TypeLambda.d.ts.map +1 -0
  789. package/dist/typeclass/TypeLambda.js +2 -0
  790. package/dist/typeclass/TypeLambda.js.map +1 -0
  791. package/dist/typeclass/index.d.ts +17 -0
  792. package/dist/typeclass/index.d.ts.map +1 -0
  793. package/dist/typeclass/index.js +17 -0
  794. package/dist/typeclass/index.js.map +1 -0
  795. package/eslintrc.json +3 -0
  796. package/package.json +20 -621
  797. package/project.json +26 -0
  798. package/src/Fx.ts +55 -35
  799. package/src/Subject/HoldSubject.test.ts +58 -0
  800. package/src/Subject/HoldSubject.ts +61 -0
  801. package/src/Subject/RefSubject.ts +99 -0
  802. package/src/Subject/Subject.test.ts +37 -0
  803. package/src/Subject/Subject.ts +47 -0
  804. package/src/Subject/SynchronizedSubject.ts +117 -0
  805. package/src/Subject/index.ts +4 -0
  806. package/src/_internal/RefCounter.ts +76 -0
  807. package/src/_internal/earlyExit.ts +16 -0
  808. package/src/_internal/entriesOf.ts +3 -0
  809. package/src/constructor/Do.ts +3 -0
  810. package/src/constructor/acquireUseRelease.ts +30 -0
  811. package/src/constructor/async.ts +12 -0
  812. package/src/constructor/asyncEffect.ts +10 -0
  813. package/src/constructor/asyncInterrupt.ts +13 -0
  814. package/src/constructor/asyncOption.ts +13 -0
  815. package/src/constructor/at.ts +11 -0
  816. package/src/constructor/die.ts +8 -0
  817. package/src/constructor/dieMessage.ts +11 -0
  818. package/src/constructor/dieSync.ts +11 -0
  819. package/src/constructor/done.ts +19 -0
  820. package/src/constructor/empty.ts +13 -0
  821. package/src/constructor/fail.ts +8 -0
  822. package/src/constructor/failCause.ts +12 -0
  823. package/src/constructor/failCauseSync.ts +12 -0
  824. package/src/constructor/fromArray.test.ts +19 -0
  825. package/src/constructor/fromArray.ts +21 -0
  826. package/src/constructor/fromEffect.test.ts +19 -0
  827. package/src/constructor/fromEffect.ts +21 -0
  828. package/src/constructor/fromEither.ts +12 -0
  829. package/src/constructor/fromEitherCause.ts +13 -0
  830. package/src/constructor/fromEmitter.test.ts +28 -0
  831. package/src/constructor/fromEmitter.ts +61 -0
  832. package/src/constructor/fromFiber.ts +12 -0
  833. package/src/constructor/fromFiberEffect.ts +11 -0
  834. package/src/constructor/fromFxEffect.ts +26 -0
  835. package/src/constructor/fromIterable.test.ts +19 -0
  836. package/src/constructor/fromIterable.ts +29 -0
  837. package/src/constructor/fromOption.ts +12 -0
  838. package/src/constructor/gen.ts +34 -0
  839. package/src/constructor/index.ts +45 -0
  840. package/src/constructor/never.ts +16 -0
  841. package/src/constructor/periodic.ts +18 -0
  842. package/src/constructor/promise.ts +11 -0
  843. package/src/constructor/promiseAbort.ts +10 -0
  844. package/src/constructor/promiseFx.ts +44 -0
  845. package/src/constructor/random.ts +9 -0
  846. package/src/constructor/scheduled.ts +24 -0
  847. package/src/constructor/service.ts +9 -0
  848. package/src/constructor/serviceWith.ts +11 -0
  849. package/src/constructor/serviceWithEffect.ts +12 -0
  850. package/src/constructor/serviceWithFx.ts +19 -0
  851. package/src/constructor/succeed.ts +18 -0
  852. package/src/constructor/suspend.ts +15 -0
  853. package/src/constructor/sync.ts +8 -0
  854. package/src/constructor/tryCatchPromise.ts +11 -0
  855. package/src/constructor/tryCatchPromiseAbort.ts +11 -0
  856. package/src/constructor/tryPromise.ts +11 -0
  857. package/src/constructor/tryPromiseAbort.ts +10 -0
  858. package/src/constructor/unit.ts +3 -0
  859. package/src/index.ts +9 -51
  860. package/src/operator/as.ts +7 -0
  861. package/src/operator/asUnit.ts +3 -0
  862. package/src/operator/catchAll.ts +16 -0
  863. package/src/operator/catchAllCause.test.ts +26 -0
  864. package/src/operator/catchAllCause.ts +31 -0
  865. package/src/operator/catchAllDefect.ts +22 -0
  866. package/src/operator/combine.test.ts +35 -0
  867. package/src/operator/combine.ts +88 -0
  868. package/src/operator/compact.ts +8 -0
  869. package/src/operator/concatMap.test.ts +28 -0
  870. package/src/operator/concatMap.ts +9 -0
  871. package/src/operator/continueWith.test.ts +25 -0
  872. package/src/operator/continueWith.ts +28 -0
  873. package/src/operator/debounce.test.ts +22 -0
  874. package/src/operator/debounce.ts +58 -0
  875. package/src/operator/delay.ts +19 -0
  876. package/src/operator/during.test.ts +48 -0
  877. package/src/operator/during.ts +62 -0
  878. package/src/operator/exhaustMap.test.ts +27 -0
  879. package/src/operator/exhaustMap.ts +63 -0
  880. package/src/operator/exhaustMapEffect.ts +13 -0
  881. package/src/operator/exhaustMapLatest.test.ts +27 -0
  882. package/src/operator/exhaustMapLatest.ts +86 -0
  883. package/src/operator/exhaustMapLatestEffect.ts +13 -0
  884. package/src/operator/filter.test.ts +25 -0
  885. package/src/operator/filter.ts +41 -0
  886. package/src/operator/filterEffect.test.ts +25 -0
  887. package/src/operator/filterEffect.ts +43 -0
  888. package/src/operator/filterMap.test.ts +26 -0
  889. package/src/operator/filterMap.ts +35 -0
  890. package/src/operator/filterMapEffect.test.ts +26 -0
  891. package/src/operator/filterMapEffect.ts +44 -0
  892. package/src/operator/flatMap.test.ts +38 -0
  893. package/src/operator/flatMap.ts +45 -0
  894. package/src/operator/flatMapCause.ts +43 -0
  895. package/src/operator/flatMapConcurrently.test.ts +28 -0
  896. package/src/operator/flatMapConcurrently.ts +17 -0
  897. package/src/operator/flatMapEffect.ts +13 -0
  898. package/src/operator/flatMapEffectConcurrently.ts +14 -0
  899. package/src/operator/hold.test.ts +47 -0
  900. package/src/operator/hold.ts +143 -0
  901. package/src/operator/index.ts +83 -0
  902. package/src/operator/interruptible.ts +18 -0
  903. package/src/operator/loop.test.ts +25 -0
  904. package/src/operator/loop.ts +43 -0
  905. package/src/operator/map.test.ts +25 -0
  906. package/src/operator/map.ts +26 -0
  907. package/src/operator/mapCause.test.ts +30 -0
  908. package/src/operator/mapCause.ts +23 -0
  909. package/src/operator/mapError.ts +9 -0
  910. package/src/operator/merge.test.ts +31 -0
  911. package/src/operator/merge.ts +43 -0
  912. package/src/operator/multicast.test.ts +69 -0
  913. package/src/operator/multicast.ts +131 -0
  914. package/src/operator/onDone.ts +19 -0
  915. package/src/operator/onDoneCause.ts +46 -0
  916. package/src/operator/onError.ts +11 -0
  917. package/src/operator/onExit.ts +17 -0
  918. package/src/operator/onInterrupt.ts +31 -0
  919. package/src/operator/orElse.ts +9 -0
  920. package/src/operator/provideEnvironment.ts +23 -0
  921. package/src/operator/provideLayer.ts +10 -0
  922. package/src/operator/provideService.test.ts +38 -0
  923. package/src/operator/provideService.ts +25 -0
  924. package/src/operator/provideServiceEffect.test.ts +41 -0
  925. package/src/operator/provideServiceEffect.ts +35 -0
  926. package/src/operator/provideSomeEnvironment.ts +29 -0
  927. package/src/operator/provideSomeLayer.ts +26 -0
  928. package/src/operator/race.test.ts +30 -0
  929. package/src/operator/race.ts +83 -0
  930. package/src/operator/sample.ts +10 -0
  931. package/src/operator/sandbox.ts +11 -0
  932. package/src/operator/scan.test.ts +25 -0
  933. package/src/operator/scan.ts +19 -0
  934. package/src/operator/scanEffect.test.ts +42 -0
  935. package/src/operator/scanEffect.ts +64 -0
  936. package/src/operator/separate.test.ts +38 -0
  937. package/src/operator/separate.ts +27 -0
  938. package/src/operator/since.test.ts +47 -0
  939. package/src/operator/since.ts +47 -0
  940. package/src/operator/skip.ts +6 -0
  941. package/src/operator/skipAfter.test.ts +29 -0
  942. package/src/operator/skipAfter.ts +39 -0
  943. package/src/operator/skipRepeats.test.ts +25 -0
  944. package/src/operator/skipRepeats.ts +43 -0
  945. package/src/operator/skipUntil.test.ts +25 -0
  946. package/src/operator/skipUntil.ts +37 -0
  947. package/src/operator/skipWhile.ts +10 -0
  948. package/src/operator/slice.test.ts +21 -0
  949. package/src/operator/slice.ts +52 -0
  950. package/src/operator/snapshot.test.ts +27 -0
  951. package/src/operator/snapshot.ts +55 -0
  952. package/src/operator/snapshotEffect.test.ts +29 -0
  953. package/src/operator/snapshotEffect.ts +72 -0
  954. package/src/operator/startWith.ts +14 -0
  955. package/src/operator/startWithEffect.ts +32 -0
  956. package/src/operator/struct.test.ts +38 -0
  957. package/src/operator/struct.ts +29 -0
  958. package/src/operator/switchMap.test.ts +27 -0
  959. package/src/operator/switchMap.ts +72 -0
  960. package/src/operator/switchMapCause.test.ts +40 -0
  961. package/src/operator/switchMapCause.ts +70 -0
  962. package/src/operator/switchMapEffect.ts +13 -0
  963. package/src/operator/switchMapError.ts +26 -0
  964. package/src/operator/switchMatch.test.ts +37 -0
  965. package/src/operator/switchMatch.ts +96 -0
  966. package/src/operator/take.ts +6 -0
  967. package/src/operator/takeUntil.test.ts +25 -0
  968. package/src/operator/takeUntil.ts +41 -0
  969. package/src/operator/takeWhile.ts +10 -0
  970. package/src/operator/tap.ts +31 -0
  971. package/src/operator/tapCause.ts +38 -0
  972. package/src/operator/tapDefect.ts +22 -0
  973. package/src/operator/tapError.ts +16 -0
  974. package/src/operator/throttle.test.ts +22 -0
  975. package/src/operator/throttle.ts +42 -0
  976. package/src/operator/tuple.ts +7 -0
  977. package/src/operator/uninterruptible.ts +18 -0
  978. package/src/operator/until.test.ts +47 -0
  979. package/src/operator/until.ts +35 -0
  980. package/src/operator/withItems.ts +9 -0
  981. package/src/operator/withPermit.ts +18 -0
  982. package/src/operator/withRuntimeFlags.ts +19 -0
  983. package/src/operator/zip.test.ts +30 -0
  984. package/src/operator/zip.ts +92 -0
  985. package/src/operator/zipItems.test.ts +25 -0
  986. package/src/operator/zipItems.ts +36 -0
  987. package/src/run/collectAll.ts +17 -0
  988. package/src/run/collectN.ts +21 -0
  989. package/src/run/drain.ts +7 -0
  990. package/src/run/index.ts +7 -0
  991. package/src/run/observe.ts +19 -0
  992. package/src/run/reduce.ts +20 -0
  993. package/src/run/run.ts +49 -0
  994. package/src/run/unsafe.ts +38 -0
  995. package/src/typeclass/Alternative.ts +15 -0
  996. package/src/typeclass/Applicative.ts +15 -0
  997. package/src/typeclass/Bicovariant.ts +15 -0
  998. package/src/typeclass/Chainable.ts +20 -0
  999. package/src/typeclass/Coproduct.ts +25 -0
  1000. package/src/typeclass/Covariant.ts +25 -0
  1001. package/src/typeclass/FlatMap.ts +19 -0
  1002. package/src/typeclass/Monad.ts +24 -0
  1003. package/src/typeclass/Of.ts +9 -0
  1004. package/src/typeclass/Pointed.ts +10 -0
  1005. package/src/typeclass/Product.ts +13 -0
  1006. package/src/typeclass/SemiAlternative.ts +15 -0
  1007. package/src/typeclass/SemiApplicative.ts +10 -0
  1008. package/src/typeclass/SemiCoproduct.ts +20 -0
  1009. package/src/typeclass/SemiProduct.ts +12 -0
  1010. package/src/typeclass/TypeLambda.ts +7 -0
  1011. package/src/typeclass/index.ts +16 -0
  1012. package/tsconfig.build.json +4 -0
  1013. package/tsconfig.build.tsbuildinfo +1 -0
  1014. package/tsconfig.json +11 -5
  1015. package/.editorconfig +0 -14
  1016. package/.eslintcache +0 -1
  1017. package/.eslintrc.cjs +0 -60
  1018. package/.huskyrc +0 -5
  1019. package/.lintstagedrc +0 -5
  1020. package/.mocharc.json +0 -6
  1021. package/.nvmrc +0 -1
  1022. package/.pnpm-debug.log +0 -20
  1023. package/.prettierrc.cjs +0 -11
  1024. package/.vscode/settings.json +0 -7
  1025. package/cjs/Fx.d.ts +0 -27
  1026. package/cjs/Fx.d.ts.map +0 -1
  1027. package/cjs/Fx.js +0 -18
  1028. package/cjs/Fx.js.map +0 -1
  1029. package/cjs/Subject.d.ts +0 -37
  1030. package/cjs/Subject.d.ts.map +0 -1
  1031. package/cjs/Subject.js +0 -193
  1032. package/cjs/Subject.js.map +0 -1
  1033. package/cjs/_internal.d.ts +0 -21
  1034. package/cjs/_internal.d.ts.map +0 -1
  1035. package/cjs/_internal.js +0 -61
  1036. package/cjs/_internal.js.map +0 -1
  1037. package/cjs/combine.d.ts +0 -7
  1038. package/cjs/combine.d.ts.map +0 -1
  1039. package/cjs/combine.js +0 -49
  1040. package/cjs/combine.js.map +0 -1
  1041. package/cjs/continueWith.d.ts +0 -4
  1042. package/cjs/continueWith.d.ts.map +0 -1
  1043. package/cjs/continueWith.js +0 -38
  1044. package/cjs/continueWith.js.map +0 -1
  1045. package/cjs/debounce.d.ts +0 -4
  1046. package/cjs/debounce.d.ts.map +0 -1
  1047. package/cjs/debounce.js +0 -40
  1048. package/cjs/debounce.js.map +0 -1
  1049. package/cjs/delay.d.ts +0 -5
  1050. package/cjs/delay.d.ts.map +0 -1
  1051. package/cjs/delay.js +0 -39
  1052. package/cjs/delay.js.map +0 -1
  1053. package/cjs/during.d.ts +0 -3
  1054. package/cjs/during.d.ts.map +0 -1
  1055. package/cjs/during.js +0 -40
  1056. package/cjs/during.js.map +0 -1
  1057. package/cjs/exhaustMap.d.ts +0 -3
  1058. package/cjs/exhaustMap.d.ts.map +0 -1
  1059. package/cjs/exhaustMap.js +0 -38
  1060. package/cjs/exhaustMap.js.map +0 -1
  1061. package/cjs/exhaustMapLatest.d.ts +0 -3
  1062. package/cjs/exhaustMapLatest.d.ts.map +0 -1
  1063. package/cjs/exhaustMapLatest.js +0 -44
  1064. package/cjs/exhaustMapLatest.js.map +0 -1
  1065. package/cjs/exhaustMapList.d.ts +0 -3
  1066. package/cjs/exhaustMapList.d.ts.map +0 -1
  1067. package/cjs/exhaustMapList.js +0 -70
  1068. package/cjs/exhaustMapList.js.map +0 -1
  1069. package/cjs/filterLoop.d.ts +0 -31
  1070. package/cjs/filterLoop.d.ts.map +0 -1
  1071. package/cjs/filterLoop.js +0 -114
  1072. package/cjs/filterLoop.js.map +0 -1
  1073. package/cjs/filterMap.d.ts +0 -30
  1074. package/cjs/filterMap.d.ts.map +0 -1
  1075. package/cjs/filterMap.js +0 -91
  1076. package/cjs/filterMap.js.map +0 -1
  1077. package/cjs/flatMap.d.ts +0 -4
  1078. package/cjs/flatMap.d.ts.map +0 -1
  1079. package/cjs/flatMap.js +0 -43
  1080. package/cjs/flatMap.js.map +0 -1
  1081. package/cjs/flatMapConcurrently.d.ts +0 -4
  1082. package/cjs/flatMapConcurrently.d.ts.map +0 -1
  1083. package/cjs/flatMapConcurrently.js +0 -40
  1084. package/cjs/flatMapConcurrently.js.map +0 -1
  1085. package/cjs/fromDequeue.d.ts +0 -4
  1086. package/cjs/fromDequeue.d.ts.map +0 -1
  1087. package/cjs/fromDequeue.js +0 -39
  1088. package/cjs/fromDequeue.js.map +0 -1
  1089. package/cjs/fromEffect.d.ts +0 -47
  1090. package/cjs/fromEffect.d.ts.map +0 -1
  1091. package/cjs/fromEffect.js +0 -70
  1092. package/cjs/fromEffect.js.map +0 -1
  1093. package/cjs/fromFxEffect.d.ts +0 -9
  1094. package/cjs/fromFxEffect.d.ts.map +0 -1
  1095. package/cjs/fromFxEffect.js +0 -38
  1096. package/cjs/fromFxEffect.js.map +0 -1
  1097. package/cjs/fromHub.d.ts +0 -4
  1098. package/cjs/fromHub.d.ts.map +0 -1
  1099. package/cjs/fromHub.js +0 -36
  1100. package/cjs/fromHub.js.map +0 -1
  1101. package/cjs/fromIterable.d.ts +0 -12
  1102. package/cjs/fromIterable.d.ts.map +0 -1
  1103. package/cjs/fromIterable.js +0 -45
  1104. package/cjs/fromIterable.js.map +0 -1
  1105. package/cjs/hold.d.ts +0 -26
  1106. package/cjs/hold.d.ts.map +0 -1
  1107. package/cjs/hold.js +0 -109
  1108. package/cjs/hold.js.map +0 -1
  1109. package/cjs/index.d.ts +0 -53
  1110. package/cjs/index.d.ts.map +0 -1
  1111. package/cjs/index.js +0 -69
  1112. package/cjs/index.js.map +0 -1
  1113. package/cjs/mapCause.d.ts +0 -5
  1114. package/cjs/mapCause.d.ts.map +0 -1
  1115. package/cjs/mapCause.js +0 -41
  1116. package/cjs/mapCause.js.map +0 -1
  1117. package/cjs/mapEffect.d.ts +0 -4
  1118. package/cjs/mapEffect.d.ts.map +0 -1
  1119. package/cjs/mapEffect.js +0 -32
  1120. package/cjs/mapEffect.js.map +0 -1
  1121. package/cjs/merge.d.ts +0 -5
  1122. package/cjs/merge.d.ts.map +0 -1
  1123. package/cjs/merge.js +0 -44
  1124. package/cjs/merge.js.map +0 -1
  1125. package/cjs/multicast.d.ts +0 -31
  1126. package/cjs/multicast.d.ts.map +0 -1
  1127. package/cjs/multicast.js +0 -83
  1128. package/cjs/multicast.js.map +0 -1
  1129. package/cjs/on.d.ts +0 -10
  1130. package/cjs/on.d.ts.map +0 -1
  1131. package/cjs/on.js +0 -38
  1132. package/cjs/on.js.map +0 -1
  1133. package/cjs/orElse.d.ts +0 -5
  1134. package/cjs/orElse.d.ts.map +0 -1
  1135. package/cjs/orElse.js +0 -47
  1136. package/cjs/orElse.js.map +0 -1
  1137. package/cjs/periodic.d.ts +0 -4
  1138. package/cjs/periodic.d.ts.map +0 -1
  1139. package/cjs/periodic.js +0 -35
  1140. package/cjs/periodic.js.map +0 -1
  1141. package/cjs/provide.d.ts +0 -12
  1142. package/cjs/provide.d.ts.map +0 -1
  1143. package/cjs/provide.js +0 -56
  1144. package/cjs/provide.js.map +0 -1
  1145. package/cjs/runCollect.d.ts +0 -4
  1146. package/cjs/runCollect.d.ts.map +0 -1
  1147. package/cjs/runCollect.js +0 -35
  1148. package/cjs/runCollect.js.map +0 -1
  1149. package/cjs/runDrain.d.ts +0 -4
  1150. package/cjs/runDrain.d.ts.map +0 -1
  1151. package/cjs/runDrain.js +0 -39
  1152. package/cjs/runDrain.js.map +0 -1
  1153. package/cjs/runObserve.d.ts +0 -4
  1154. package/cjs/runObserve.d.ts.map +0 -1
  1155. package/cjs/runObserve.js +0 -36
  1156. package/cjs/runObserve.js.map +0 -1
  1157. package/cjs/runReduce.d.ts +0 -6
  1158. package/cjs/runReduce.d.ts.map +0 -1
  1159. package/cjs/runReduce.js +0 -50
  1160. package/cjs/runReduce.js.map +0 -1
  1161. package/cjs/scanEffect.d.ts +0 -4
  1162. package/cjs/scanEffect.d.ts.map +0 -1
  1163. package/cjs/scanEffect.js +0 -35
  1164. package/cjs/scanEffect.js.map +0 -1
  1165. package/cjs/scheduled.d.ts +0 -14
  1166. package/cjs/scheduled.d.ts.map +0 -1
  1167. package/cjs/scheduled.js +0 -81
  1168. package/cjs/scheduled.js.map +0 -1
  1169. package/cjs/since.d.ts +0 -3
  1170. package/cjs/since.d.ts.map +0 -1
  1171. package/cjs/since.js +0 -39
  1172. package/cjs/since.js.map +0 -1
  1173. package/cjs/skipRepeats.d.ts +0 -4
  1174. package/cjs/skipRepeats.d.ts.map +0 -1
  1175. package/cjs/skipRepeats.js +0 -40
  1176. package/cjs/skipRepeats.js.map +0 -1
  1177. package/cjs/skipWhile.d.ts +0 -5
  1178. package/cjs/skipWhile.d.ts.map +0 -1
  1179. package/cjs/skipWhile.js +0 -48
  1180. package/cjs/skipWhile.js.map +0 -1
  1181. package/cjs/slice.d.ts +0 -5
  1182. package/cjs/slice.d.ts.map +0 -1
  1183. package/cjs/slice.js +0 -55
  1184. package/cjs/slice.js.map +0 -1
  1185. package/cjs/snapshot.d.ts +0 -4
  1186. package/cjs/snapshot.d.ts.map +0 -1
  1187. package/cjs/snapshot.js +0 -43
  1188. package/cjs/snapshot.js.map +0 -1
  1189. package/cjs/struct.d.ts +0 -3
  1190. package/cjs/struct.d.ts.map +0 -1
  1191. package/cjs/struct.js +0 -9
  1192. package/cjs/struct.js.map +0 -1
  1193. package/cjs/suspendSucceed.d.ts +0 -3
  1194. package/cjs/suspendSucceed.d.ts.map +0 -1
  1195. package/cjs/suspendSucceed.js +0 -9
  1196. package/cjs/suspendSucceed.js.map +0 -1
  1197. package/cjs/switchMap.d.ts +0 -3
  1198. package/cjs/switchMap.d.ts.map +0 -1
  1199. package/cjs/switchMap.js +0 -37
  1200. package/cjs/switchMap.js.map +0 -1
  1201. package/cjs/takeWhile.d.ts +0 -5
  1202. package/cjs/takeWhile.d.ts.map +0 -1
  1203. package/cjs/takeWhile.js +0 -19
  1204. package/cjs/takeWhile.js.map +0 -1
  1205. package/cjs/tapEffect.d.ts +0 -5
  1206. package/cjs/tapEffect.d.ts.map +0 -1
  1207. package/cjs/tapEffect.js +0 -34
  1208. package/cjs/tapEffect.js.map +0 -1
  1209. package/cjs/throttle.d.ts +0 -4
  1210. package/cjs/throttle.d.ts.map +0 -1
  1211. package/cjs/throttle.js +0 -41
  1212. package/cjs/throttle.js.map +0 -1
  1213. package/cjs/toEnqueue.d.ts +0 -5
  1214. package/cjs/toEnqueue.d.ts.map +0 -1
  1215. package/cjs/toEnqueue.js +0 -9
  1216. package/cjs/toEnqueue.js.map +0 -1
  1217. package/cjs/toStream.d.ts +0 -8
  1218. package/cjs/toStream.d.ts.map +0 -1
  1219. package/cjs/toStream.js +0 -64
  1220. package/cjs/toStream.js.map +0 -1
  1221. package/cjs/transform.d.ts +0 -20
  1222. package/cjs/transform.d.ts.map +0 -1
  1223. package/cjs/transform.js +0 -54
  1224. package/cjs/transform.js.map +0 -1
  1225. package/cjs/until.d.ts +0 -3
  1226. package/cjs/until.d.ts.map +0 -1
  1227. package/cjs/until.js +0 -39
  1228. package/cjs/until.js.map +0 -1
  1229. package/cjs/withEmitter.d.ts +0 -5
  1230. package/cjs/withEmitter.d.ts.map +0 -1
  1231. package/cjs/withEmitter.js +0 -47
  1232. package/cjs/withEmitter.js.map +0 -1
  1233. package/cjs/zip.d.ts +0 -7
  1234. package/cjs/zip.d.ts.map +0 -1
  1235. package/cjs/zip.js +0 -51
  1236. package/cjs/zip.js.map +0 -1
  1237. package/cjs/zipIterable.d.ts +0 -4
  1238. package/cjs/zipIterable.d.ts.map +0 -1
  1239. package/cjs/zipIterable.js +0 -54
  1240. package/cjs/zipIterable.js.map +0 -1
  1241. package/esm/Fx.d.ts +0 -27
  1242. package/esm/Fx.d.ts.map +0 -1
  1243. package/esm/Fx.js +0 -13
  1244. package/esm/Fx.js.map +0 -1
  1245. package/esm/Subject.d.ts +0 -37
  1246. package/esm/Subject.d.ts.map +0 -1
  1247. package/esm/Subject.js +0 -163
  1248. package/esm/Subject.js.map +0 -1
  1249. package/esm/_internal.d.ts +0 -21
  1250. package/esm/_internal.d.ts.map +0 -1
  1251. package/esm/_internal.js +0 -31
  1252. package/esm/_internal.js.map +0 -1
  1253. package/esm/combine.d.ts +0 -7
  1254. package/esm/combine.d.ts.map +0 -1
  1255. package/esm/combine.js +0 -21
  1256. package/esm/combine.js.map +0 -1
  1257. package/esm/continueWith.d.ts +0 -4
  1258. package/esm/continueWith.d.ts.map +0 -1
  1259. package/esm/continueWith.js +0 -10
  1260. package/esm/continueWith.js.map +0 -1
  1261. package/esm/debounce.d.ts +0 -4
  1262. package/esm/debounce.d.ts.map +0 -1
  1263. package/esm/debounce.js +0 -13
  1264. package/esm/debounce.js.map +0 -1
  1265. package/esm/delay.d.ts +0 -5
  1266. package/esm/delay.d.ts.map +0 -1
  1267. package/esm/delay.js +0 -11
  1268. package/esm/delay.js.map +0 -1
  1269. package/esm/during.d.ts +0 -3
  1270. package/esm/during.d.ts.map +0 -1
  1271. package/esm/during.js +0 -13
  1272. package/esm/during.js.map +0 -1
  1273. package/esm/exhaustMap.d.ts +0 -3
  1274. package/esm/exhaustMap.d.ts.map +0 -1
  1275. package/esm/exhaustMap.js +0 -11
  1276. package/esm/exhaustMap.js.map +0 -1
  1277. package/esm/exhaustMapLatest.d.ts +0 -3
  1278. package/esm/exhaustMapLatest.d.ts.map +0 -1
  1279. package/esm/exhaustMapLatest.js +0 -17
  1280. package/esm/exhaustMapLatest.js.map +0 -1
  1281. package/esm/exhaustMapList.d.ts +0 -3
  1282. package/esm/exhaustMapList.d.ts.map +0 -1
  1283. package/esm/exhaustMapList.js +0 -43
  1284. package/esm/exhaustMapList.js.map +0 -1
  1285. package/esm/filterLoop.d.ts +0 -31
  1286. package/esm/filterLoop.d.ts.map +0 -1
  1287. package/esm/filterLoop.js +0 -82
  1288. package/esm/filterLoop.js.map +0 -1
  1289. package/esm/filterMap.d.ts +0 -30
  1290. package/esm/filterMap.d.ts.map +0 -1
  1291. package/esm/filterMap.js +0 -59
  1292. package/esm/filterMap.js.map +0 -1
  1293. package/esm/flatMap.d.ts +0 -4
  1294. package/esm/flatMap.d.ts.map +0 -1
  1295. package/esm/flatMap.js +0 -15
  1296. package/esm/flatMap.js.map +0 -1
  1297. package/esm/flatMapConcurrently.d.ts +0 -4
  1298. package/esm/flatMapConcurrently.d.ts.map +0 -1
  1299. package/esm/flatMapConcurrently.js +0 -12
  1300. package/esm/flatMapConcurrently.js.map +0 -1
  1301. package/esm/fromDequeue.d.ts +0 -4
  1302. package/esm/fromDequeue.d.ts.map +0 -1
  1303. package/esm/fromDequeue.js +0 -12
  1304. package/esm/fromDequeue.js.map +0 -1
  1305. package/esm/fromEffect.d.ts +0 -47
  1306. package/esm/fromEffect.d.ts.map +0 -1
  1307. package/esm/fromEffect.js +0 -40
  1308. package/esm/fromEffect.js.map +0 -1
  1309. package/esm/fromFxEffect.d.ts +0 -9
  1310. package/esm/fromFxEffect.d.ts.map +0 -1
  1311. package/esm/fromFxEffect.js +0 -10
  1312. package/esm/fromFxEffect.js.map +0 -1
  1313. package/esm/fromHub.d.ts +0 -4
  1314. package/esm/fromHub.d.ts.map +0 -1
  1315. package/esm/fromHub.js +0 -9
  1316. package/esm/fromHub.js.map +0 -1
  1317. package/esm/fromIterable.d.ts +0 -12
  1318. package/esm/fromIterable.d.ts.map +0 -1
  1319. package/esm/fromIterable.js +0 -17
  1320. package/esm/fromIterable.js.map +0 -1
  1321. package/esm/hold.d.ts +0 -26
  1322. package/esm/hold.d.ts.map +0 -1
  1323. package/esm/hold.js +0 -81
  1324. package/esm/hold.js.map +0 -1
  1325. package/esm/index.d.ts +0 -53
  1326. package/esm/index.d.ts.map +0 -1
  1327. package/esm/index.js +0 -53
  1328. package/esm/index.js.map +0 -1
  1329. package/esm/mapCause.d.ts +0 -5
  1330. package/esm/mapCause.d.ts.map +0 -1
  1331. package/esm/mapCause.js +0 -13
  1332. package/esm/mapCause.js.map +0 -1
  1333. package/esm/mapEffect.d.ts +0 -4
  1334. package/esm/mapEffect.d.ts.map +0 -1
  1335. package/esm/mapEffect.js +0 -5
  1336. package/esm/mapEffect.js.map +0 -1
  1337. package/esm/merge.d.ts +0 -5
  1338. package/esm/merge.d.ts.map +0 -1
  1339. package/esm/merge.js +0 -16
  1340. package/esm/merge.js.map +0 -1
  1341. package/esm/multicast.d.ts +0 -31
  1342. package/esm/multicast.d.ts.map +0 -1
  1343. package/esm/multicast.js +0 -55
  1344. package/esm/multicast.js.map +0 -1
  1345. package/esm/on.d.ts +0 -10
  1346. package/esm/on.d.ts.map +0 -1
  1347. package/esm/on.js +0 -8
  1348. package/esm/on.js.map +0 -1
  1349. package/esm/orElse.d.ts +0 -5
  1350. package/esm/orElse.d.ts.map +0 -1
  1351. package/esm/orElse.js +0 -19
  1352. package/esm/orElse.js.map +0 -1
  1353. package/esm/periodic.d.ts +0 -4
  1354. package/esm/periodic.d.ts.map +0 -1
  1355. package/esm/periodic.js +0 -8
  1356. package/esm/periodic.js.map +0 -1
  1357. package/esm/provide.d.ts +0 -12
  1358. package/esm/provide.d.ts.map +0 -1
  1359. package/esm/provide.js +0 -24
  1360. package/esm/provide.js.map +0 -1
  1361. package/esm/runCollect.d.ts +0 -4
  1362. package/esm/runCollect.d.ts.map +0 -1
  1363. package/esm/runCollect.js +0 -8
  1364. package/esm/runCollect.js.map +0 -1
  1365. package/esm/runDrain.d.ts +0 -4
  1366. package/esm/runDrain.d.ts.map +0 -1
  1367. package/esm/runDrain.js +0 -12
  1368. package/esm/runDrain.js.map +0 -1
  1369. package/esm/runObserve.d.ts +0 -4
  1370. package/esm/runObserve.d.ts.map +0 -1
  1371. package/esm/runObserve.js +0 -9
  1372. package/esm/runObserve.js.map +0 -1
  1373. package/esm/runReduce.d.ts +0 -6
  1374. package/esm/runReduce.d.ts.map +0 -1
  1375. package/esm/runReduce.js +0 -22
  1376. package/esm/runReduce.js.map +0 -1
  1377. package/esm/scanEffect.d.ts +0 -4
  1378. package/esm/scanEffect.d.ts.map +0 -1
  1379. package/esm/scanEffect.js +0 -8
  1380. package/esm/scanEffect.js.map +0 -1
  1381. package/esm/scheduled.d.ts +0 -14
  1382. package/esm/scheduled.d.ts.map +0 -1
  1383. package/esm/scheduled.js +0 -53
  1384. package/esm/scheduled.js.map +0 -1
  1385. package/esm/since.d.ts +0 -3
  1386. package/esm/since.d.ts.map +0 -1
  1387. package/esm/since.js +0 -12
  1388. package/esm/since.js.map +0 -1
  1389. package/esm/skipRepeats.d.ts +0 -4
  1390. package/esm/skipRepeats.d.ts.map +0 -1
  1391. package/esm/skipRepeats.js +0 -13
  1392. package/esm/skipRepeats.js.map +0 -1
  1393. package/esm/skipWhile.d.ts +0 -5
  1394. package/esm/skipWhile.d.ts.map +0 -1
  1395. package/esm/skipWhile.js +0 -20
  1396. package/esm/skipWhile.js.map +0 -1
  1397. package/esm/slice.d.ts +0 -5
  1398. package/esm/slice.d.ts.map +0 -1
  1399. package/esm/slice.js +0 -26
  1400. package/esm/slice.js.map +0 -1
  1401. package/esm/snapshot.d.ts +0 -4
  1402. package/esm/snapshot.d.ts.map +0 -1
  1403. package/esm/snapshot.js +0 -15
  1404. package/esm/snapshot.js.map +0 -1
  1405. package/esm/struct.d.ts +0 -3
  1406. package/esm/struct.d.ts.map +0 -1
  1407. package/esm/struct.js +0 -5
  1408. package/esm/struct.js.map +0 -1
  1409. package/esm/suspendSucceed.d.ts +0 -3
  1410. package/esm/suspendSucceed.d.ts.map +0 -1
  1411. package/esm/suspendSucceed.js +0 -5
  1412. package/esm/suspendSucceed.js.map +0 -1
  1413. package/esm/switchMap.d.ts +0 -3
  1414. package/esm/switchMap.d.ts.map +0 -1
  1415. package/esm/switchMap.js +0 -10
  1416. package/esm/switchMap.js.map +0 -1
  1417. package/esm/takeWhile.d.ts +0 -5
  1418. package/esm/takeWhile.d.ts.map +0 -1
  1419. package/esm/takeWhile.js +0 -14
  1420. package/esm/takeWhile.js.map +0 -1
  1421. package/esm/tapEffect.d.ts +0 -5
  1422. package/esm/tapEffect.d.ts.map +0 -1
  1423. package/esm/tapEffect.js +0 -6
  1424. package/esm/tapEffect.js.map +0 -1
  1425. package/esm/throttle.d.ts +0 -4
  1426. package/esm/throttle.d.ts.map +0 -1
  1427. package/esm/throttle.js +0 -14
  1428. package/esm/throttle.js.map +0 -1
  1429. package/esm/toEnqueue.d.ts +0 -5
  1430. package/esm/toEnqueue.d.ts.map +0 -1
  1431. package/esm/toEnqueue.js +0 -5
  1432. package/esm/toEnqueue.js.map +0 -1
  1433. package/esm/toStream.d.ts +0 -8
  1434. package/esm/toStream.d.ts.map +0 -1
  1435. package/esm/toStream.js +0 -37
  1436. package/esm/toStream.js.map +0 -1
  1437. package/esm/transform.d.ts +0 -20
  1438. package/esm/transform.d.ts.map +0 -1
  1439. package/esm/transform.js +0 -20
  1440. package/esm/transform.js.map +0 -1
  1441. package/esm/until.d.ts +0 -3
  1442. package/esm/until.d.ts.map +0 -1
  1443. package/esm/until.js +0 -12
  1444. package/esm/until.js.map +0 -1
  1445. package/esm/withEmitter.d.ts +0 -5
  1446. package/esm/withEmitter.d.ts.map +0 -1
  1447. package/esm/withEmitter.js +0 -20
  1448. package/esm/withEmitter.js.map +0 -1
  1449. package/esm/zip.d.ts +0 -7
  1450. package/esm/zip.d.ts.map +0 -1
  1451. package/esm/zip.js +0 -23
  1452. package/esm/zip.js.map +0 -1
  1453. package/esm/zipIterable.d.ts +0 -4
  1454. package/esm/zipIterable.d.ts.map +0 -1
  1455. package/esm/zipIterable.js +0 -26
  1456. package/esm/zipIterable.js.map +0 -1
  1457. package/perf/cases/filter-map-reduce.ts +0 -51
  1458. package/perf/cases/flatMap.ts +0 -47
  1459. package/perf/cases/switchMap.ts +0 -40
  1460. package/perf/helpers.ts +0 -60
  1461. package/perf/readme.md +0 -29
  1462. package/perf/runPerfTest.ts +0 -25
  1463. package/readme.md +0 -7
  1464. package/src/Subject.test.ts +0 -95
  1465. package/src/Subject.ts +0 -230
  1466. package/src/_internal.ts +0 -72
  1467. package/src/combine.test.ts +0 -34
  1468. package/src/combine.ts +0 -66
  1469. package/src/continueWith.test.ts +0 -26
  1470. package/src/continueWith.ts +0 -21
  1471. package/src/debounce.test.ts +0 -17
  1472. package/src/debounce.ts +0 -49
  1473. package/src/delay.test.ts +0 -24
  1474. package/src/delay.ts +0 -17
  1475. package/src/during.test.ts +0 -39
  1476. package/src/during.ts +0 -54
  1477. package/src/exhaustMap.test.ts +0 -34
  1478. package/src/exhaustMap.ts +0 -49
  1479. package/src/exhaustMapLatest.test.ts +0 -34
  1480. package/src/exhaustMapLatest.ts +0 -59
  1481. package/src/exhaustMapList.test.ts +0 -64
  1482. package/src/exhaustMapList.ts +0 -144
  1483. package/src/filterLoop.test.ts +0 -63
  1484. package/src/filterLoop.ts +0 -151
  1485. package/src/filterMap.test.ts +0 -33
  1486. package/src/filterMap.ts +0 -79
  1487. package/src/flatMap.test.ts +0 -50
  1488. package/src/flatMap.ts +0 -43
  1489. package/src/flatMapConcurrently.test.ts +0 -23
  1490. package/src/flatMapConcurrently.ts +0 -16
  1491. package/src/fromDequeue.ts +0 -17
  1492. package/src/fromEffect.ts +0 -112
  1493. package/src/fromFxEffect.ts +0 -31
  1494. package/src/fromHub.ts +0 -12
  1495. package/src/fromIterable.ts +0 -19
  1496. package/src/hold.test.ts +0 -49
  1497. package/src/hold.ts +0 -142
  1498. package/src/mapCause.test.ts +0 -34
  1499. package/src/mapCause.ts +0 -19
  1500. package/src/mapEffect.test.ts +0 -21
  1501. package/src/mapEffect.ts +0 -17
  1502. package/src/merge.test.ts +0 -21
  1503. package/src/merge.ts +0 -33
  1504. package/src/multicast.test.ts +0 -52
  1505. package/src/multicast.ts +0 -116
  1506. package/src/on.ts +0 -33
  1507. package/src/orElse.test.ts +0 -22
  1508. package/src/orElse.ts +0 -33
  1509. package/src/periodic.test.ts +0 -20
  1510. package/src/periodic.ts +0 -11
  1511. package/src/provide.test.ts +0 -56
  1512. package/src/provide.ts +0 -61
  1513. package/src/runCollect.ts +0 -21
  1514. package/src/runDrain.ts +0 -25
  1515. package/src/runObserve.ts +0 -33
  1516. package/src/runReduce.ts +0 -64
  1517. package/src/scanEffect.ts +0 -32
  1518. package/src/scheduled.ts +0 -79
  1519. package/src/since.test.ts +0 -40
  1520. package/src/since.ts +0 -30
  1521. package/src/skipRepeats.test.ts +0 -28
  1522. package/src/skipRepeats.ts +0 -33
  1523. package/src/skipWhile.test.ts +0 -44
  1524. package/src/skipWhile.ts +0 -45
  1525. package/src/slice.test.ts +0 -21
  1526. package/src/slice.ts +0 -47
  1527. package/src/snapshot.test.ts +0 -51
  1528. package/src/snapshot.ts +0 -54
  1529. package/src/struct.ts +0 -24
  1530. package/src/suspendSucceed.ts +0 -5
  1531. package/src/switchMap.test.ts +0 -35
  1532. package/src/switchMap.ts +0 -46
  1533. package/src/takeWhile.test.ts +0 -44
  1534. package/src/takeWhile.ts +0 -28
  1535. package/src/tapEffect.ts +0 -24
  1536. package/src/throttle.test.ts +0 -17
  1537. package/src/throttle.ts +0 -53
  1538. package/src/toEnqueue.ts +0 -9
  1539. package/src/toStream.ts +0 -81
  1540. package/src/transform.ts +0 -44
  1541. package/src/until.test.ts +0 -35
  1542. package/src/until.ts +0 -27
  1543. package/src/withEmitter.test.ts +0 -28
  1544. package/src/withEmitter.ts +0 -39
  1545. package/src/zip.test.ts +0 -31
  1546. package/src/zip.ts +0 -70
  1547. package/src/zipIterable.test.ts +0 -19
  1548. package/src/zipIterable.ts +0 -51
  1549. package/tools/benchmark.ts +0 -159
  1550. package/tools/common.ts +0 -43
  1551. package/tools/generatePackageExports.ts +0 -100
  1552. package/tsconfig.base.json +0 -33
  1553. package/tsconfig.build.cjs.json +0 -32
  1554. package/tsconfig.build.esm.json +0 -36
  1555. package/tsconfig.test.json +0 -17
@@ -0,0 +1,1483 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <coverage generated="1671499520512" clover="3.2.0">
3
+ <project timestamp="1671499520512" name="All files">
4
+ <metrics statements="1342" coveredstatements="1262" conditionals="246" coveredconditionals="243" methods="169" coveredmethods="146" elements="1757" coveredelements="1651" complexity="0" loc="1342" ncloc="1342" packages="6" files="39" classes="39"/>
5
+ <package name="src">
6
+ <metrics statements="63" coveredstatements="54" conditionals="3" coveredconditionals="3" methods="4" coveredmethods="2"/>
7
+ <file name="Fx.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/Fx.ts">
8
+ <metrics statements="63" coveredstatements="54" conditionals="3" coveredconditionals="3" methods="4" coveredmethods="2"/>
9
+ <line num="1" count="1" type="stmt"/>
10
+ <line num="2" count="1" type="stmt"/>
11
+ <line num="3" count="1" type="stmt"/>
12
+ <line num="4" count="1" type="stmt"/>
13
+ <line num="5" count="1" type="stmt"/>
14
+ <line num="6" count="1" type="stmt"/>
15
+ <line num="7" count="1" type="stmt"/>
16
+ <line num="8" count="1" type="stmt"/>
17
+ <line num="9" count="1" type="stmt"/>
18
+ <line num="10" count="1" type="stmt"/>
19
+ <line num="11" count="1" type="cond" truecount="1" falsecount="0"/>
20
+ <line num="12" count="24" type="stmt"/>
21
+ <line num="13" count="24" type="stmt"/>
22
+ <line num="14" count="24" type="stmt"/>
23
+ <line num="15" count="24" type="cond" truecount="1" falsecount="0"/>
24
+ <line num="16" count="24" type="stmt"/>
25
+ <line num="17" count="24" type="stmt"/>
26
+ <line num="18" count="24" type="stmt"/>
27
+ <line num="19" count="24" type="stmt"/>
28
+ <line num="20" count="24" type="stmt"/>
29
+ <line num="21" count="24" type="stmt"/>
30
+ <line num="22" count="24" type="stmt"/>
31
+ <line num="23" count="24" type="stmt"/>
32
+ <line num="24" count="24" type="stmt"/>
33
+ <line num="25" count="24" type="stmt"/>
34
+ <line num="26" count="24" type="stmt"/>
35
+ <line num="27" count="24" type="stmt"/>
36
+ <line num="28" count="24" type="stmt"/>
37
+ <line num="29" count="24" type="stmt"/>
38
+ <line num="30" count="24" type="stmt"/>
39
+ <line num="31" count="24" type="stmt"/>
40
+ <line num="32" count="24" type="stmt"/>
41
+ <line num="33" count="24" type="stmt"/>
42
+ <line num="34" count="24" type="stmt"/>
43
+ <line num="35" count="24" type="stmt"/>
44
+ <line num="36" count="24" type="stmt"/>
45
+ <line num="37" count="24" type="stmt"/>
46
+ <line num="38" count="24" type="stmt"/>
47
+ <line num="39" count="24" type="stmt"/>
48
+ <line num="40" count="24" type="stmt"/>
49
+ <line num="41" count="24" type="stmt"/>
50
+ <line num="42" count="24" type="stmt"/>
51
+ <line num="43" count="24" type="stmt"/>
52
+ <line num="44" count="24" type="stmt"/>
53
+ <line num="45" count="24" type="stmt"/>
54
+ <line num="46" count="24" type="stmt"/>
55
+ <line num="47" count="24" type="stmt"/>
56
+ <line num="48" count="24" type="stmt"/>
57
+ <line num="49" count="24" type="stmt"/>
58
+ <line num="50" count="24" type="stmt"/>
59
+ <line num="51" count="1" type="stmt"/>
60
+ <line num="52" count="0" type="stmt"/>
61
+ <line num="53" count="0" type="stmt"/>
62
+ <line num="54" count="0" type="stmt"/>
63
+ <line num="55" count="0" type="stmt"/>
64
+ <line num="56" count="0" type="stmt"/>
65
+ <line num="57" count="0" type="stmt"/>
66
+ <line num="58" count="0" type="stmt"/>
67
+ <line num="59" count="0" type="cond" truecount="1" falsecount="0"/>
68
+ <line num="60" count="28" type="stmt"/>
69
+ <line num="61" count="28" type="stmt"/>
70
+ <line num="62" count="1" type="stmt"/>
71
+ <line num="63" count="0" type="stmt"/>
72
+ </file>
73
+ </package>
74
+ <package name="src.Subject">
75
+ <metrics statements="43" coveredstatements="42" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="0"/>
76
+ <file name="Subject.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/Subject/Subject.ts">
77
+ <metrics statements="43" coveredstatements="42" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="0"/>
78
+ <line num="1" count="1" type="cond" truecount="1" falsecount="0"/>
79
+ <line num="2" count="1" type="stmt"/>
80
+ <line num="3" count="1" type="stmt"/>
81
+ <line num="4" count="1" type="stmt"/>
82
+ <line num="5" count="1" type="stmt"/>
83
+ <line num="6" count="1" type="stmt"/>
84
+ <line num="7" count="1" type="stmt"/>
85
+ <line num="8" count="1" type="stmt"/>
86
+ <line num="9" count="1" type="stmt"/>
87
+ <line num="10" count="1" type="stmt"/>
88
+ <line num="11" count="1" type="stmt"/>
89
+ <line num="12" count="1" type="stmt"/>
90
+ <line num="13" count="1" type="stmt"/>
91
+ <line num="14" count="0" type="stmt"/>
92
+ <line num="15" count="1" type="stmt"/>
93
+ <line num="16" count="1" type="stmt"/>
94
+ <line num="17" count="1" type="stmt"/>
95
+ <line num="18" count="1" type="stmt"/>
96
+ <line num="19" count="1" type="stmt"/>
97
+ <line num="20" count="1" type="stmt"/>
98
+ <line num="21" count="1" type="stmt"/>
99
+ <line num="22" count="1" type="stmt"/>
100
+ <line num="23" count="1" type="stmt"/>
101
+ <line num="24" count="1" type="stmt"/>
102
+ <line num="25" count="1" type="stmt"/>
103
+ <line num="26" count="1" type="stmt"/>
104
+ <line num="27" count="1" type="stmt"/>
105
+ <line num="28" count="1" type="stmt"/>
106
+ <line num="29" count="1" type="stmt"/>
107
+ <line num="30" count="1" type="stmt"/>
108
+ <line num="31" count="1" type="stmt"/>
109
+ <line num="32" count="1" type="stmt"/>
110
+ <line num="33" count="1" type="stmt"/>
111
+ <line num="34" count="1" type="stmt"/>
112
+ <line num="35" count="1" type="stmt"/>
113
+ <line num="36" count="1" type="stmt"/>
114
+ <line num="37" count="1" type="stmt"/>
115
+ <line num="38" count="1" type="stmt"/>
116
+ <line num="39" count="1" type="stmt"/>
117
+ <line num="40" count="1" type="stmt"/>
118
+ <line num="41" count="1" type="stmt"/>
119
+ <line num="42" count="1" type="stmt"/>
120
+ <line num="43" count="1" type="stmt"/>
121
+ </file>
122
+ </package>
123
+ <package name="src._internal">
124
+ <metrics statements="93" coveredstatements="83" conditionals="23" coveredconditionals="23" methods="9" coveredmethods="5"/>
125
+ <file name="RefCounter.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/_internal/RefCounter.ts">
126
+ <metrics statements="76" coveredstatements="70" conditionals="16" coveredconditionals="16" methods="4" coveredmethods="2"/>
127
+ <line num="1" count="1" type="stmt"/>
128
+ <line num="2" count="1" type="stmt"/>
129
+ <line num="3" count="1" type="stmt"/>
130
+ <line num="4" count="1" type="stmt"/>
131
+ <line num="5" count="1" type="stmt"/>
132
+ <line num="6" count="1" type="stmt"/>
133
+ <line num="7" count="1" type="stmt"/>
134
+ <line num="8" count="1" type="stmt"/>
135
+ <line num="9" count="1" type="stmt"/>
136
+ <line num="10" count="1" type="stmt"/>
137
+ <line num="11" count="1" type="stmt"/>
138
+ <line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
139
+ <line num="13" count="0" type="stmt"/>
140
+ <line num="14" count="0" type="stmt"/>
141
+ <line num="15" count="0" type="stmt"/>
142
+ <line num="16" count="1" type="stmt"/>
143
+ <line num="17" count="1" type="stmt"/>
144
+ <line num="18" count="1" type="stmt"/>
145
+ <line num="19" count="1" type="cond" truecount="1" falsecount="0"/>
146
+ <line num="20" count="18" type="stmt"/>
147
+ <line num="21" count="18" type="stmt"/>
148
+ <line num="22" count="18" type="stmt"/>
149
+ <line num="23" count="18" type="stmt"/>
150
+ <line num="24" count="18" type="stmt"/>
151
+ <line num="25" count="18" type="stmt"/>
152
+ <line num="26" count="18" type="stmt"/>
153
+ <line num="27" count="18" type="stmt"/>
154
+ <line num="28" count="18" type="cond" truecount="1" falsecount="0"/>
155
+ <line num="29" count="18" type="stmt"/>
156
+ <line num="30" count="18" type="cond" truecount="1" falsecount="0"/>
157
+ <line num="31" count="18" type="cond" truecount="1" falsecount="0"/>
158
+ <line num="32" count="51" type="stmt"/>
159
+ <line num="33" count="51" type="stmt"/>
160
+ <line num="34" count="18" type="stmt"/>
161
+ <line num="35" count="18" type="stmt"/>
162
+ <line num="36" count="18" type="stmt"/>
163
+ <line num="37" count="18" type="cond" truecount="3" falsecount="0"/>
164
+ <line num="38" count="18" type="stmt"/>
165
+ <line num="39" count="18" type="stmt"/>
166
+ <line num="40" count="51" type="stmt"/>
167
+ <line num="41" count="51" type="stmt"/>
168
+ <line num="42" count="51" type="stmt"/>
169
+ <line num="43" count="51" type="cond" truecount="1" falsecount="0"/>
170
+ <line num="44" count="51" type="stmt"/>
171
+ <line num="45" count="51" type="cond" truecount="1" falsecount="0"/>
172
+ <line num="46" count="44" type="cond" truecount="2" falsecount="0"/>
173
+ <line num="47" count="19" type="stmt"/>
174
+ <line num="48" count="44" type="stmt"/>
175
+ <line num="49" count="51" type="stmt"/>
176
+ <line num="50" count="51" type="stmt"/>
177
+ <line num="51" count="51" type="cond" truecount="1" falsecount="0"/>
178
+ <line num="52" count="51" type="cond" truecount="1" falsecount="0"/>
179
+ <line num="53" count="51" type="stmt"/>
180
+ <line num="54" count="51" type="stmt"/>
181
+ <line num="55" count="51" type="stmt"/>
182
+ <line num="56" count="51" type="stmt"/>
183
+ <line num="57" count="0" type="stmt"/>
184
+ <line num="58" count="0" type="stmt"/>
185
+ <line num="59" count="0" type="cond" truecount="1" falsecount="0"/>
186
+ <line num="60" count="18" type="stmt"/>
187
+ <line num="61" count="18" type="stmt"/>
188
+ <line num="62" count="18" type="stmt"/>
189
+ <line num="63" count="18" type="stmt"/>
190
+ <line num="64" count="18" type="stmt"/>
191
+ <line num="65" count="18" type="cond" truecount="1" falsecount="0"/>
192
+ <line num="66" count="18" type="stmt"/>
193
+ <line num="67" count="18" type="stmt"/>
194
+ <line num="68" count="18" type="stmt"/>
195
+ <line num="69" count="18" type="stmt"/>
196
+ <line num="70" count="18" type="stmt"/>
197
+ <line num="71" count="18" type="stmt"/>
198
+ <line num="72" count="18" type="stmt"/>
199
+ <line num="73" count="18" type="stmt"/>
200
+ <line num="74" count="18" type="stmt"/>
201
+ <line num="75" count="18" type="stmt"/>
202
+ <line num="76" count="18" type="stmt"/>
203
+ </file>
204
+ <file name="earlyExit.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/_internal/earlyExit.ts">
205
+ <metrics statements="17" coveredstatements="13" conditionals="7" coveredconditionals="7" methods="5" coveredmethods="3"/>
206
+ <line num="1" count="1" type="stmt"/>
207
+ <line num="2" count="1" type="stmt"/>
208
+ <line num="3" count="1" type="stmt"/>
209
+ <line num="4" count="1" type="stmt"/>
210
+ <line num="5" count="0" type="stmt"/>
211
+ <line num="6" count="0" type="stmt"/>
212
+ <line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
213
+ <line num="8" count="2" type="stmt"/>
214
+ <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
215
+ <line num="10" count="0" type="stmt"/>
216
+ <line num="11" count="0" type="stmt"/>
217
+ <line num="12" count="1" type="stmt"/>
218
+ <line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
219
+ <line num="14" count="3" type="cond" truecount="1" falsecount="0"/>
220
+ <line num="15" count="3" type="stmt"/>
221
+ <line num="16" count="3" type="cond" truecount="3" falsecount="0"/>
222
+ <line num="17" count="1" type="stmt"/>
223
+ </file>
224
+ </package>
225
+ <package name="src.constructor">
226
+ <metrics statements="202" coveredstatements="200" conditionals="35" coveredconditionals="35" methods="33" coveredmethods="31"/>
227
+ <file name="at.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/constructor/at.ts">
228
+ <metrics statements="11" coveredstatements="11" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
229
+ <line num="1" count="1" type="stmt"/>
230
+ <line num="2" count="1" type="stmt"/>
231
+ <line num="3" count="1" type="stmt"/>
232
+ <line num="4" count="1" type="stmt"/>
233
+ <line num="5" count="1" type="stmt"/>
234
+ <line num="6" count="1" type="stmt"/>
235
+ <line num="7" count="1" type="stmt"/>
236
+ <line num="8" count="1" type="stmt"/>
237
+ <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
238
+ <line num="10" count="28" type="stmt"/>
239
+ <line num="11" count="28" type="stmt"/>
240
+ </file>
241
+ <file name="fromArray.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/constructor/fromArray.ts">
242
+ <metrics statements="21" coveredstatements="21" conditionals="4" coveredconditionals="4" methods="4" coveredmethods="4"/>
243
+ <line num="1" count="1" type="stmt"/>
244
+ <line num="2" count="1" type="stmt"/>
245
+ <line num="3" count="1" type="stmt"/>
246
+ <line num="4" count="1" type="stmt"/>
247
+ <line num="5" count="1" type="stmt"/>
248
+ <line num="6" count="1" type="cond" truecount="1" falsecount="0"/>
249
+ <line num="7" count="21" type="stmt"/>
250
+ <line num="8" count="22" type="cond" truecount="1" falsecount="0"/>
251
+ <line num="9" count="22" type="stmt"/>
252
+ <line num="10" count="22" type="stmt"/>
253
+ <line num="11" count="1" type="stmt"/>
254
+ <line num="12" count="1" type="stmt"/>
255
+ <line num="13" count="1" type="stmt"/>
256
+ <line num="14" count="1" type="stmt"/>
257
+ <line num="15" count="1" type="cond" truecount="1" falsecount="0"/>
258
+ <line num="16" count="21" type="stmt"/>
259
+ <line num="17" count="21" type="stmt"/>
260
+ <line num="18" count="21" type="stmt"/>
261
+ <line num="19" count="1" type="cond" truecount="1" falsecount="0"/>
262
+ <line num="20" count="21" type="stmt"/>
263
+ <line num="21" count="21" type="stmt"/>
264
+ </file>
265
+ <file name="fromEffect.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/constructor/fromEffect.ts">
266
+ <metrics statements="21" coveredstatements="21" conditionals="4" coveredconditionals="4" methods="4" coveredmethods="4"/>
267
+ <line num="1" count="1" type="stmt"/>
268
+ <line num="2" count="1" type="stmt"/>
269
+ <line num="3" count="1" type="stmt"/>
270
+ <line num="4" count="1" type="stmt"/>
271
+ <line num="5" count="1" type="stmt"/>
272
+ <line num="6" count="1" type="cond" truecount="1" falsecount="0"/>
273
+ <line num="7" count="31" type="stmt"/>
274
+ <line num="8" count="32" type="cond" truecount="1" falsecount="0"/>
275
+ <line num="9" count="32" type="stmt"/>
276
+ <line num="10" count="1" type="stmt"/>
277
+ <line num="11" count="1" type="stmt"/>
278
+ <line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
279
+ <line num="13" count="31" type="stmt"/>
280
+ <line num="14" count="31" type="stmt"/>
281
+ <line num="15" count="31" type="stmt"/>
282
+ <line num="16" count="1" type="cond" truecount="1" falsecount="0"/>
283
+ <line num="17" count="31" type="stmt"/>
284
+ <line num="18" count="31" type="stmt"/>
285
+ <line num="19" count="31" type="stmt"/>
286
+ <line num="20" count="31" type="stmt"/>
287
+ <line num="21" count="31" type="stmt"/>
288
+ </file>
289
+ <file name="fromEmitter.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/constructor/fromEmitter.ts">
290
+ <metrics statements="60" coveredstatements="60" conditionals="9" coveredconditionals="9" methods="8" coveredmethods="7"/>
291
+ <line num="1" count="1" type="stmt"/>
292
+ <line num="2" count="1" type="stmt"/>
293
+ <line num="3" count="1" type="stmt"/>
294
+ <line num="4" count="1" type="stmt"/>
295
+ <line num="5" count="1" type="stmt"/>
296
+ <line num="6" count="1" type="stmt"/>
297
+ <line num="7" count="1" type="stmt"/>
298
+ <line num="8" count="1" type="stmt"/>
299
+ <line num="9" count="1" type="stmt"/>
300
+ <line num="10" count="1" type="stmt"/>
301
+ <line num="11" count="1" type="stmt"/>
302
+ <line num="12" count="1" type="stmt"/>
303
+ <line num="13" count="1" type="stmt"/>
304
+ <line num="14" count="1" type="stmt"/>
305
+ <line num="15" count="1" type="stmt"/>
306
+ <line num="16" count="1" type="stmt"/>
307
+ <line num="17" count="1" type="stmt"/>
308
+ <line num="18" count="1" type="cond" truecount="1" falsecount="0"/>
309
+ <line num="19" count="1" type="stmt"/>
310
+ <line num="20" count="1" type="stmt"/>
311
+ <line num="21" count="2" type="cond" truecount="1" falsecount="0"/>
312
+ <line num="22" count="2" type="stmt"/>
313
+ <line num="23" count="2" type="stmt"/>
314
+ <line num="24" count="1" type="stmt"/>
315
+ <line num="25" count="1" type="stmt"/>
316
+ <line num="26" count="1" type="stmt"/>
317
+ <line num="27" count="1" type="stmt"/>
318
+ <line num="28" count="1" type="cond" truecount="1" falsecount="0"/>
319
+ <line num="29" count="1" type="stmt"/>
320
+ <line num="30" count="1" type="stmt"/>
321
+ <line num="31" count="1" type="stmt"/>
322
+ <line num="32" count="1" type="cond" truecount="1" falsecount="0"/>
323
+ <line num="33" count="1" type="stmt"/>
324
+ <line num="34" count="1" type="stmt"/>
325
+ <line num="35" count="1" type="cond" truecount="1" falsecount="0"/>
326
+ <line num="36" count="1" type="stmt"/>
327
+ <line num="37" count="1" type="cond" truecount="1" falsecount="0"/>
328
+ <line num="38" count="1" type="stmt"/>
329
+ <line num="39" count="1" type="cond" truecount="1" falsecount="0"/>
330
+ <line num="40" count="1" type="stmt"/>
331
+ <line num="41" count="1" type="cond" truecount="1" falsecount="0"/>
332
+ <line num="42" count="1" type="stmt"/>
333
+ <line num="43" count="1" type="stmt"/>
334
+ <line num="44" count="1" type="stmt"/>
335
+ <line num="45" count="1" type="stmt"/>
336
+ <line num="46" count="1" type="stmt"/>
337
+ <line num="47" count="1" type="stmt"/>
338
+ <line num="48" count="1" type="stmt"/>
339
+ <line num="49" count="1" type="stmt"/>
340
+ <line num="50" count="1" type="stmt"/>
341
+ <line num="51" count="1" type="stmt"/>
342
+ <line num="52" count="1" type="stmt"/>
343
+ <line num="53" count="1" type="stmt"/>
344
+ <line num="54" count="1" type="stmt"/>
345
+ <line num="55" count="1" type="cond" truecount="1" falsecount="0"/>
346
+ <line num="56" count="1" type="stmt"/>
347
+ <line num="57" count="1" type="stmt"/>
348
+ <line num="58" count="1" type="stmt"/>
349
+ <line num="59" count="1" type="stmt"/>
350
+ <line num="60" count="1" type="stmt"/>
351
+ </file>
352
+ <file name="fromIterable.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/constructor/fromIterable.ts">
353
+ <metrics statements="29" coveredstatements="29" conditionals="6" coveredconditionals="6" methods="4" coveredmethods="4"/>
354
+ <line num="1" count="1" type="stmt"/>
355
+ <line num="2" count="1" type="stmt"/>
356
+ <line num="3" count="1" type="stmt"/>
357
+ <line num="4" count="1" type="stmt"/>
358
+ <line num="5" count="1" type="cond" truecount="1" falsecount="0"/>
359
+ <line num="6" count="8" type="stmt"/>
360
+ <line num="7" count="9" type="cond" truecount="1" falsecount="0"/>
361
+ <line num="8" count="9" type="stmt"/>
362
+ <line num="9" count="1" type="stmt"/>
363
+ <line num="10" count="1" type="cond" truecount="1" falsecount="0"/>
364
+ <line num="11" count="8" type="stmt"/>
365
+ <line num="12" count="8" type="stmt"/>
366
+ <line num="13" count="8" type="stmt"/>
367
+ <line num="14" count="8" type="stmt"/>
368
+ <line num="15" count="1" type="cond" truecount="1" falsecount="0"/>
369
+ <line num="16" count="8" type="stmt"/>
370
+ <line num="17" count="8" type="stmt"/>
371
+ <line num="18" count="8" type="cond" truecount="1" falsecount="0"/>
372
+ <line num="19" count="8" type="stmt"/>
373
+ <line num="20" count="8" type="stmt"/>
374
+ <line num="21" count="8" type="stmt"/>
375
+ <line num="22" count="8" type="cond" truecount="1" falsecount="0"/>
376
+ <line num="23" count="18" type="stmt"/>
377
+ <line num="24" count="18" type="stmt"/>
378
+ <line num="25" count="18" type="stmt"/>
379
+ <line num="26" count="8" type="stmt"/>
380
+ <line num="27" count="8" type="stmt"/>
381
+ <line num="28" count="8" type="stmt"/>
382
+ <line num="29" count="8" type="stmt"/>
383
+ </file>
384
+ <file name="never.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/constructor/never.ts">
385
+ <metrics statements="16" coveredstatements="14" conditionals="2" coveredconditionals="2" methods="3" coveredmethods="2"/>
386
+ <line num="1" count="1" type="stmt"/>
387
+ <line num="2" count="1" type="stmt"/>
388
+ <line num="3" count="1" type="stmt"/>
389
+ <line num="4" count="1" type="stmt"/>
390
+ <line num="5" count="1" type="stmt"/>
391
+ <line num="6" count="1" type="stmt"/>
392
+ <line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
393
+ <line num="8" count="1" type="stmt"/>
394
+ <line num="9" count="1" type="stmt"/>
395
+ <line num="10" count="1" type="stmt"/>
396
+ <line num="11" count="1" type="stmt"/>
397
+ <line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
398
+ <line num="13" count="1" type="stmt"/>
399
+ <line num="14" count="0" type="stmt"/>
400
+ <line num="15" count="0" type="stmt"/>
401
+ <line num="16" count="1" type="stmt"/>
402
+ </file>
403
+ <file name="serviceWith.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/constructor/serviceWith.ts">
404
+ <metrics statements="11" coveredstatements="11" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
405
+ <line num="1" count="1" type="stmt"/>
406
+ <line num="2" count="1" type="stmt"/>
407
+ <line num="3" count="1" type="stmt"/>
408
+ <line num="4" count="1" type="stmt"/>
409
+ <line num="5" count="1" type="stmt"/>
410
+ <line num="6" count="1" type="stmt"/>
411
+ <line num="7" count="1" type="stmt"/>
412
+ <line num="8" count="1" type="stmt"/>
413
+ <line num="9" count="1" type="stmt"/>
414
+ <line num="10" count="1" type="stmt"/>
415
+ <line num="11" count="1" type="cond" truecount="1" falsecount="0"/>
416
+ </file>
417
+ <file name="succeed.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/constructor/succeed.ts">
418
+ <metrics statements="18" coveredstatements="18" conditionals="4" coveredconditionals="4" methods="4" coveredmethods="4"/>
419
+ <line num="1" count="1" type="stmt"/>
420
+ <line num="2" count="1" type="stmt"/>
421
+ <line num="3" count="1" type="stmt"/>
422
+ <line num="4" count="1" type="stmt"/>
423
+ <line num="5" count="1" type="stmt"/>
424
+ <line num="6" count="1" type="stmt"/>
425
+ <line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
426
+ <line num="8" count="1" type="cond" truecount="1" falsecount="0"/>
427
+ <line num="9" count="1" type="stmt"/>
428
+ <line num="10" count="1" type="stmt"/>
429
+ <line num="11" count="1" type="stmt"/>
430
+ <line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
431
+ <line num="13" count="1" type="stmt"/>
432
+ <line num="14" count="1" type="stmt"/>
433
+ <line num="15" count="1" type="stmt"/>
434
+ <line num="16" count="1" type="cond" truecount="1" falsecount="0"/>
435
+ <line num="17" count="1" type="stmt"/>
436
+ <line num="18" count="1" type="stmt"/>
437
+ </file>
438
+ <file name="suspend.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/constructor/suspend.ts">
439
+ <metrics statements="15" coveredstatements="15" conditionals="4" coveredconditionals="4" methods="4" coveredmethods="4"/>
440
+ <line num="1" count="1" type="stmt"/>
441
+ <line num="2" count="1" type="stmt"/>
442
+ <line num="3" count="1" type="stmt"/>
443
+ <line num="4" count="1" type="cond" truecount="1" falsecount="0"/>
444
+ <line num="5" count="3" type="cond" truecount="1" falsecount="0"/>
445
+ <line num="6" count="3" type="stmt"/>
446
+ <line num="7" count="1" type="stmt"/>
447
+ <line num="8" count="1" type="stmt"/>
448
+ <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
449
+ <line num="10" count="3" type="stmt"/>
450
+ <line num="11" count="3" type="stmt"/>
451
+ <line num="12" count="3" type="stmt"/>
452
+ <line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
453
+ <line num="14" count="3" type="stmt"/>
454
+ <line num="15" count="3" type="stmt"/>
455
+ </file>
456
+ </package>
457
+ <package name="src.operator">
458
+ <metrics statements="836" coveredstatements="787" conditionals="168" coveredconditionals="165" methods="114" coveredmethods="102"/>
459
+ <file name="concatMap.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/concatMap.ts">
460
+ <metrics statements="9" coveredstatements="9" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
461
+ <line num="1" count="1" type="stmt"/>
462
+ <line num="2" count="1" type="stmt"/>
463
+ <line num="3" count="1" type="stmt"/>
464
+ <line num="4" count="1" type="stmt"/>
465
+ <line num="5" count="1" type="stmt"/>
466
+ <line num="6" count="1" type="stmt"/>
467
+ <line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
468
+ <line num="8" count="1" type="stmt"/>
469
+ <line num="9" count="1" type="stmt"/>
470
+ </file>
471
+ <file name="continueWith.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/continueWith.ts">
472
+ <metrics statements="28" coveredstatements="26" conditionals="7" coveredconditionals="7" methods="6" coveredmethods="5"/>
473
+ <line num="1" count="1" type="stmt"/>
474
+ <line num="2" count="1" type="stmt"/>
475
+ <line num="3" count="1" type="stmt"/>
476
+ <line num="4" count="1" type="stmt"/>
477
+ <line num="5" count="1" type="cond" truecount="1" falsecount="0"/>
478
+ <line num="6" count="2" type="cond" truecount="1" falsecount="0"/>
479
+ <line num="7" count="3" type="cond" truecount="1" falsecount="0"/>
480
+ <line num="8" count="3" type="stmt"/>
481
+ <line num="9" count="3" type="stmt"/>
482
+ <line num="10" count="1" type="stmt"/>
483
+ <line num="11" count="1" type="stmt"/>
484
+ <line num="12" count="1" type="stmt"/>
485
+ <line num="13" count="1" type="stmt"/>
486
+ <line num="14" count="1" type="cond" truecount="1" falsecount="0"/>
487
+ <line num="15" count="2" type="stmt"/>
488
+ <line num="16" count="2" type="stmt"/>
489
+ <line num="17" count="2" type="stmt"/>
490
+ <line num="18" count="1" type="cond" truecount="1" falsecount="0"/>
491
+ <line num="19" count="2" type="stmt"/>
492
+ <line num="20" count="0" type="stmt"/>
493
+ <line num="21" count="0" type="stmt"/>
494
+ <line num="22" count="1" type="stmt"/>
495
+ <line num="23" count="1" type="cond" truecount="1" falsecount="0"/>
496
+ <line num="24" count="2" type="stmt"/>
497
+ <line num="25" count="2" type="stmt"/>
498
+ <line num="26" count="2" type="stmt"/>
499
+ <line num="27" count="2" type="cond" truecount="1" falsecount="0"/>
500
+ <line num="28" count="2" type="stmt"/>
501
+ </file>
502
+ <file name="delay.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/delay.ts">
503
+ <metrics statements="19" coveredstatements="19" conditionals="5" coveredconditionals="5" methods="4" coveredmethods="4"/>
504
+ <line num="1" count="1" type="stmt"/>
505
+ <line num="2" count="1" type="stmt"/>
506
+ <line num="3" count="1" type="stmt"/>
507
+ <line num="4" count="1" type="stmt"/>
508
+ <line num="5" count="1" type="stmt"/>
509
+ <line num="6" count="1" type="stmt"/>
510
+ <line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
511
+ <line num="8" count="3" type="cond" truecount="1" falsecount="0"/>
512
+ <line num="9" count="3" type="cond" truecount="1" falsecount="0"/>
513
+ <line num="10" count="3" type="stmt"/>
514
+ <line num="11" count="1" type="stmt"/>
515
+ <line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
516
+ <line num="13" count="3" type="stmt"/>
517
+ <line num="14" count="3" type="stmt"/>
518
+ <line num="15" count="3" type="stmt"/>
519
+ <line num="16" count="3" type="stmt"/>
520
+ <line num="17" count="1" type="cond" truecount="1" falsecount="0"/>
521
+ <line num="18" count="3" type="stmt"/>
522
+ <line num="19" count="3" type="stmt"/>
523
+ </file>
524
+ <file name="filter.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/filter.ts">
525
+ <metrics statements="35" coveredstatements="32" conditionals="8" coveredconditionals="8" methods="7" coveredmethods="6"/>
526
+ <line num="1" count="1" type="stmt"/>
527
+ <line num="2" count="1" type="stmt"/>
528
+ <line num="3" count="1" type="stmt"/>
529
+ <line num="4" count="1" type="stmt"/>
530
+ <line num="5" count="1" type="stmt"/>
531
+ <line num="6" count="1" type="cond" truecount="1" falsecount="0"/>
532
+ <line num="7" count="1" type="stmt"/>
533
+ <line num="8" count="1" type="cond" truecount="1" falsecount="0"/>
534
+ <line num="9" count="1" type="stmt"/>
535
+ <line num="10" count="2" type="cond" truecount="1" falsecount="0"/>
536
+ <line num="11" count="2" type="stmt"/>
537
+ <line num="12" count="1" type="stmt"/>
538
+ <line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
539
+ <line num="14" count="1" type="stmt"/>
540
+ <line num="15" count="1" type="stmt"/>
541
+ <line num="16" count="1" type="stmt"/>
542
+ <line num="17" count="1" type="stmt"/>
543
+ <line num="18" count="1" type="cond" truecount="1" falsecount="0"/>
544
+ <line num="19" count="1" type="stmt"/>
545
+ <line num="20" count="0" type="stmt"/>
546
+ <line num="21" count="0" type="stmt"/>
547
+ <line num="22" count="0" type="stmt"/>
548
+ <line num="23" count="1" type="cond" truecount="1" falsecount="0"/>
549
+ <line num="24" count="1" type="stmt"/>
550
+ <line num="25" count="1" type="stmt"/>
551
+ <line num="26" count="1" type="cond" truecount="1" falsecount="0"/>
552
+ <line num="27" count="4" type="cond" truecount="1" falsecount="0"/>
553
+ <line num="28" count="2" type="stmt"/>
554
+ <line num="29" count="2" type="stmt"/>
555
+ <line num="30" count="2" type="stmt"/>
556
+ <line num="31" count="2" type="stmt"/>
557
+ <line num="32" count="2" type="stmt"/>
558
+ <line num="33" count="1" type="stmt"/>
559
+ <line num="34" count="1" type="stmt"/>
560
+ <line num="35" count="1" type="stmt"/>
561
+ </file>
562
+ <file name="filterEffect.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/filterEffect.ts">
563
+ <metrics statements="43" coveredstatements="40" conditionals="10" coveredconditionals="10" methods="7" coveredmethods="6"/>
564
+ <line num="1" count="1" type="stmt"/>
565
+ <line num="2" count="1" type="stmt"/>
566
+ <line num="3" count="1" type="stmt"/>
567
+ <line num="4" count="1" type="stmt"/>
568
+ <line num="5" count="1" type="stmt"/>
569
+ <line num="6" count="1" type="cond" truecount="1" falsecount="0"/>
570
+ <line num="7" count="1" type="stmt"/>
571
+ <line num="8" count="1" type="cond" truecount="1" falsecount="0"/>
572
+ <line num="9" count="1" type="stmt"/>
573
+ <line num="10" count="2" type="cond" truecount="1" falsecount="0"/>
574
+ <line num="11" count="2" type="stmt"/>
575
+ <line num="12" count="2" type="stmt"/>
576
+ <line num="13" count="1" type="stmt"/>
577
+ <line num="14" count="1" type="stmt"/>
578
+ <line num="15" count="1" type="stmt"/>
579
+ <line num="16" count="1" type="stmt"/>
580
+ <line num="17" count="1" type="stmt"/>
581
+ <line num="18" count="1" type="cond" truecount="1" falsecount="0"/>
582
+ <line num="19" count="1" type="stmt"/>
583
+ <line num="20" count="1" type="stmt"/>
584
+ <line num="21" count="1" type="stmt"/>
585
+ <line num="22" count="1" type="stmt"/>
586
+ <line num="23" count="1" type="stmt"/>
587
+ <line num="24" count="1" type="cond" truecount="1" falsecount="0"/>
588
+ <line num="25" count="1" type="stmt"/>
589
+ <line num="26" count="0" type="stmt"/>
590
+ <line num="27" count="0" type="stmt"/>
591
+ <line num="28" count="0" type="stmt"/>
592
+ <line num="29" count="1" type="stmt"/>
593
+ <line num="30" count="1" type="stmt"/>
594
+ <line num="31" count="1" type="cond" truecount="1" falsecount="0"/>
595
+ <line num="32" count="1" type="stmt"/>
596
+ <line num="33" count="1" type="stmt"/>
597
+ <line num="34" count="1" type="stmt"/>
598
+ <line num="35" count="1" type="cond" truecount="1" falsecount="0"/>
599
+ <line num="36" count="4" type="stmt"/>
600
+ <line num="37" count="4" type="cond" truecount="3" falsecount="0"/>
601
+ <line num="38" count="2" type="stmt"/>
602
+ <line num="39" count="2" type="stmt"/>
603
+ <line num="40" count="2" type="stmt"/>
604
+ <line num="41" count="1" type="stmt"/>
605
+ <line num="42" count="1" type="stmt"/>
606
+ <line num="43" count="1" type="stmt"/>
607
+ </file>
608
+ <file name="filterMap.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/filterMap.ts">
609
+ <metrics statements="35" coveredstatements="33" conditionals="8" coveredconditionals="8" methods="7" coveredmethods="6"/>
610
+ <line num="1" count="1" type="stmt"/>
611
+ <line num="2" count="1" type="stmt"/>
612
+ <line num="3" count="1" type="stmt"/>
613
+ <line num="4" count="1" type="stmt"/>
614
+ <line num="5" count="1" type="stmt"/>
615
+ <line num="6" count="1" type="stmt"/>
616
+ <line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
617
+ <line num="8" count="1" type="stmt"/>
618
+ <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
619
+ <line num="10" count="1" type="stmt"/>
620
+ <line num="11" count="2" type="cond" truecount="1" falsecount="0"/>
621
+ <line num="12" count="2" type="stmt"/>
622
+ <line num="13" count="1" type="stmt"/>
623
+ <line num="14" count="1" type="stmt"/>
624
+ <line num="15" count="1" type="cond" truecount="1" falsecount="0"/>
625
+ <line num="16" count="1" type="stmt"/>
626
+ <line num="17" count="1" type="stmt"/>
627
+ <line num="18" count="1" type="stmt"/>
628
+ <line num="19" count="1" type="cond" truecount="1" falsecount="0"/>
629
+ <line num="20" count="1" type="stmt"/>
630
+ <line num="21" count="0" type="stmt"/>
631
+ <line num="22" count="0" type="stmt"/>
632
+ <line num="23" count="1" type="stmt"/>
633
+ <line num="24" count="1" type="cond" truecount="1" falsecount="0"/>
634
+ <line num="25" count="1" type="stmt"/>
635
+ <line num="26" count="1" type="stmt"/>
636
+ <line num="27" count="1" type="cond" truecount="1" falsecount="0"/>
637
+ <line num="28" count="3" type="stmt"/>
638
+ <line num="29" count="3" type="cond" truecount="1" falsecount="0"/>
639
+ <line num="30" count="1" type="stmt"/>
640
+ <line num="31" count="1" type="stmt"/>
641
+ <line num="32" count="1" type="stmt"/>
642
+ <line num="33" count="1" type="stmt"/>
643
+ <line num="34" count="1" type="stmt"/>
644
+ <line num="35" count="1" type="stmt"/>
645
+ </file>
646
+ <file name="filterMapEffect.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/filterMapEffect.ts">
647
+ <metrics statements="44" coveredstatements="41" conditionals="7" coveredconditionals="7" methods="7" coveredmethods="6"/>
648
+ <line num="1" count="1" type="stmt"/>
649
+ <line num="2" count="1" type="stmt"/>
650
+ <line num="3" count="1" type="stmt"/>
651
+ <line num="4" count="1" type="stmt"/>
652
+ <line num="5" count="1" type="stmt"/>
653
+ <line num="6" count="1" type="stmt"/>
654
+ <line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
655
+ <line num="8" count="1" type="stmt"/>
656
+ <line num="9" count="1" type="stmt"/>
657
+ <line num="10" count="1" type="cond" truecount="1" falsecount="0"/>
658
+ <line num="11" count="2" type="cond" truecount="1" falsecount="0"/>
659
+ <line num="12" count="2" type="stmt"/>
660
+ <line num="13" count="2" type="stmt"/>
661
+ <line num="14" count="1" type="stmt"/>
662
+ <line num="15" count="1" type="stmt"/>
663
+ <line num="16" count="1" type="stmt"/>
664
+ <line num="17" count="1" type="stmt"/>
665
+ <line num="18" count="1" type="stmt"/>
666
+ <line num="19" count="1" type="cond" truecount="1" falsecount="0"/>
667
+ <line num="20" count="1" type="stmt"/>
668
+ <line num="21" count="1" type="stmt"/>
669
+ <line num="22" count="1" type="stmt"/>
670
+ <line num="23" count="1" type="stmt"/>
671
+ <line num="24" count="1" type="stmt"/>
672
+ <line num="25" count="1" type="cond" truecount="1" falsecount="0"/>
673
+ <line num="26" count="1" type="stmt"/>
674
+ <line num="27" count="0" type="stmt"/>
675
+ <line num="28" count="0" type="stmt"/>
676
+ <line num="29" count="0" type="stmt"/>
677
+ <line num="30" count="1" type="stmt"/>
678
+ <line num="31" count="1" type="stmt"/>
679
+ <line num="32" count="1" type="cond" truecount="1" falsecount="0"/>
680
+ <line num="33" count="1" type="stmt"/>
681
+ <line num="34" count="1" type="stmt"/>
682
+ <line num="35" count="1" type="stmt"/>
683
+ <line num="36" count="1" type="cond" truecount="1" falsecount="0"/>
684
+ <line num="37" count="3" type="stmt"/>
685
+ <line num="38" count="3" type="stmt"/>
686
+ <line num="39" count="3" type="stmt"/>
687
+ <line num="40" count="3" type="stmt"/>
688
+ <line num="41" count="3" type="stmt"/>
689
+ <line num="42" count="1" type="stmt"/>
690
+ <line num="43" count="1" type="stmt"/>
691
+ <line num="44" count="1" type="stmt"/>
692
+ </file>
693
+ <file name="flatMap.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/flatMap.ts">
694
+ <metrics statements="42" coveredstatements="42" conditionals="8" coveredconditionals="8" methods="4" coveredmethods="4"/>
695
+ <line num="1" count="1" type="stmt"/>
696
+ <line num="2" count="1" type="stmt"/>
697
+ <line num="3" count="1" type="stmt"/>
698
+ <line num="4" count="1" type="stmt"/>
699
+ <line num="5" count="1" type="stmt"/>
700
+ <line num="6" count="1" type="stmt"/>
701
+ <line num="7" count="1" type="stmt"/>
702
+ <line num="8" count="1" type="stmt"/>
703
+ <line num="9" count="1" type="stmt"/>
704
+ <line num="10" count="1" type="cond" truecount="2" falsecount="0"/>
705
+ <line num="11" count="6" type="cond" truecount="1" falsecount="0"/>
706
+ <line num="12" count="6" type="stmt"/>
707
+ <line num="13" count="6" type="stmt"/>
708
+ <line num="14" count="1" type="stmt"/>
709
+ <line num="15" count="1" type="stmt"/>
710
+ <line num="16" count="1" type="stmt"/>
711
+ <line num="17" count="1" type="stmt"/>
712
+ <line num="18" count="1" type="cond" truecount="1" falsecount="0"/>
713
+ <line num="19" count="5" type="stmt"/>
714
+ <line num="20" count="5" type="stmt"/>
715
+ <line num="21" count="5" type="stmt"/>
716
+ <line num="22" count="1" type="cond" truecount="1" falsecount="0"/>
717
+ <line num="23" count="5" type="stmt"/>
718
+ <line num="24" count="5" type="stmt"/>
719
+ <line num="25" count="5" type="cond" truecount="1" falsecount="0"/>
720
+ <line num="26" count="5" type="stmt"/>
721
+ <line num="27" count="5" type="stmt"/>
722
+ <line num="28" count="5" type="cond" truecount="1" falsecount="0"/>
723
+ <line num="29" count="16" type="stmt"/>
724
+ <line num="30" count="16" type="stmt"/>
725
+ <line num="31" count="16" type="cond" truecount="1" falsecount="0"/>
726
+ <line num="32" count="16" type="stmt"/>
727
+ <line num="33" count="16" type="stmt"/>
728
+ <line num="34" count="16" type="stmt"/>
729
+ <line num="35" count="16" type="stmt"/>
730
+ <line num="36" count="5" type="stmt"/>
731
+ <line num="37" count="5" type="stmt"/>
732
+ <line num="38" count="5" type="stmt"/>
733
+ <line num="39" count="5" type="stmt"/>
734
+ <line num="40" count="5" type="stmt"/>
735
+ <line num="41" count="5" type="stmt"/>
736
+ <line num="42" count="5" type="stmt"/>
737
+ </file>
738
+ <file name="flatMapConcurrently.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/flatMapConcurrently.ts">
739
+ <metrics statements="17" coveredstatements="17" conditionals="3" coveredconditionals="3" methods="1" coveredmethods="1"/>
740
+ <line num="1" count="1" type="stmt"/>
741
+ <line num="2" count="1" type="stmt"/>
742
+ <line num="3" count="1" type="stmt"/>
743
+ <line num="4" count="1" type="stmt"/>
744
+ <line num="5" count="1" type="stmt"/>
745
+ <line num="6" count="1" type="stmt"/>
746
+ <line num="7" count="1" type="stmt"/>
747
+ <line num="8" count="1" type="stmt"/>
748
+ <line num="9" count="1" type="stmt"/>
749
+ <line num="10" count="1" type="cond" truecount="1" falsecount="0"/>
750
+ <line num="11" count="2" type="stmt"/>
751
+ <line num="12" count="2" type="cond" truecount="1" falsecount="0"/>
752
+ <line num="13" count="2" type="cond" truecount="1" falsecount="0"/>
753
+ <line num="14" count="2" type="stmt"/>
754
+ <line num="15" count="2" type="stmt"/>
755
+ <line num="16" count="2" type="stmt"/>
756
+ <line num="17" count="2" type="stmt"/>
757
+ </file>
758
+ <file name="loop.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/loop.ts">
759
+ <metrics statements="43" coveredstatements="40" conditionals="8" coveredconditionals="8" methods="7" coveredmethods="6"/>
760
+ <line num="1" count="1" type="stmt"/>
761
+ <line num="2" count="1" type="stmt"/>
762
+ <line num="3" count="1" type="stmt"/>
763
+ <line num="4" count="1" type="stmt"/>
764
+ <line num="5" count="1" type="cond" truecount="1" falsecount="0"/>
765
+ <line num="6" count="2" type="cond" truecount="1" falsecount="0"/>
766
+ <line num="7" count="3" type="cond" truecount="1" falsecount="0"/>
767
+ <line num="8" count="3" type="stmt"/>
768
+ <line num="9" count="1" type="stmt"/>
769
+ <line num="10" count="1" type="stmt"/>
770
+ <line num="11" count="1" type="stmt"/>
771
+ <line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
772
+ <line num="13" count="2" type="stmt"/>
773
+ <line num="14" count="2" type="stmt"/>
774
+ <line num="15" count="2" type="stmt"/>
775
+ <line num="16" count="2" type="stmt"/>
776
+ <line num="17" count="2" type="stmt"/>
777
+ <line num="18" count="2" type="stmt"/>
778
+ <line num="19" count="1" type="cond" truecount="1" falsecount="0"/>
779
+ <line num="20" count="2" type="stmt"/>
780
+ <line num="21" count="0" type="stmt"/>
781
+ <line num="22" count="0" type="stmt"/>
782
+ <line num="23" count="0" type="stmt"/>
783
+ <line num="24" count="1" type="stmt"/>
784
+ <line num="25" count="1" type="stmt"/>
785
+ <line num="26" count="1" type="stmt"/>
786
+ <line num="27" count="1" type="stmt"/>
787
+ <line num="28" count="1" type="cond" truecount="1" falsecount="0"/>
788
+ <line num="29" count="2" type="stmt"/>
789
+ <line num="30" count="2" type="stmt"/>
790
+ <line num="31" count="2" type="stmt"/>
791
+ <line num="32" count="2" type="stmt"/>
792
+ <line num="33" count="2" type="cond" truecount="1" falsecount="0"/>
793
+ <line num="34" count="6" type="cond" truecount="1" falsecount="0"/>
794
+ <line num="35" count="6" type="stmt"/>
795
+ <line num="36" count="6" type="stmt"/>
796
+ <line num="37" count="6" type="stmt"/>
797
+ <line num="38" count="6" type="stmt"/>
798
+ <line num="39" count="6" type="stmt"/>
799
+ <line num="40" count="6" type="stmt"/>
800
+ <line num="41" count="2" type="stmt"/>
801
+ <line num="42" count="2" type="stmt"/>
802
+ <line num="43" count="2" type="stmt"/>
803
+ </file>
804
+ <file name="map.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/map.ts">
805
+ <metrics statements="26" coveredstatements="23" conditionals="7" coveredconditionals="7" methods="7" coveredmethods="6"/>
806
+ <line num="1" count="1" type="stmt"/>
807
+ <line num="2" count="1" type="stmt"/>
808
+ <line num="3" count="1" type="stmt"/>
809
+ <line num="4" count="1" type="cond" truecount="2" falsecount="0"/>
810
+ <line num="5" count="2" type="cond" truecount="1" falsecount="0"/>
811
+ <line num="6" count="2" type="stmt"/>
812
+ <line num="7" count="1" type="stmt"/>
813
+ <line num="8" count="1" type="stmt"/>
814
+ <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
815
+ <line num="10" count="1" type="stmt"/>
816
+ <line num="11" count="1" type="stmt"/>
817
+ <line num="12" count="1" type="stmt"/>
818
+ <line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
819
+ <line num="14" count="1" type="stmt"/>
820
+ <line num="15" count="0" type="stmt"/>
821
+ <line num="16" count="0" type="stmt"/>
822
+ <line num="17" count="0" type="stmt"/>
823
+ <line num="18" count="1" type="cond" truecount="1" falsecount="0"/>
824
+ <line num="19" count="1" type="stmt"/>
825
+ <line num="20" count="1" type="stmt"/>
826
+ <line num="21" count="1" type="cond" truecount="1" falsecount="0"/>
827
+ <line num="22" count="3" type="stmt"/>
828
+ <line num="23" count="3" type="stmt"/>
829
+ <line num="24" count="1" type="stmt"/>
830
+ <line num="25" count="1" type="stmt"/>
831
+ <line num="26" count="1" type="stmt"/>
832
+ </file>
833
+ <file name="merge.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/merge.ts">
834
+ <metrics statements="50" coveredstatements="50" conditionals="9" coveredconditionals="9" methods="6" coveredmethods="6"/>
835
+ <line num="1" count="1" type="stmt"/>
836
+ <line num="2" count="1" type="stmt"/>
837
+ <line num="3" count="1" type="stmt"/>
838
+ <line num="4" count="1" type="stmt"/>
839
+ <line num="5" count="1" type="stmt"/>
840
+ <line num="6" count="1" type="stmt"/>
841
+ <line num="7" count="1" type="stmt"/>
842
+ <line num="8" count="1" type="stmt"/>
843
+ <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
844
+ <line num="10" count="9" type="stmt"/>
845
+ <line num="11" count="9" type="stmt"/>
846
+ <line num="12" count="10" type="cond" truecount="1" falsecount="0"/>
847
+ <line num="13" count="10" type="stmt"/>
848
+ <line num="14" count="1" type="cond" truecount="1" falsecount="0"/>
849
+ <line num="15" count="3" type="cond" truecount="1" falsecount="0"/>
850
+ <line num="16" count="3" type="cond" truecount="1" falsecount="0"/>
851
+ <line num="17" count="3" type="stmt"/>
852
+ <line num="18" count="3" type="stmt"/>
853
+ <line num="19" count="1" type="stmt"/>
854
+ <line num="20" count="1" type="stmt"/>
855
+ <line num="21" count="1" type="stmt"/>
856
+ <line num="22" count="1" type="stmt"/>
857
+ <line num="23" count="1" type="stmt"/>
858
+ <line num="24" count="1" type="stmt"/>
859
+ <line num="25" count="1" type="stmt"/>
860
+ <line num="26" count="1" type="stmt"/>
861
+ <line num="27" count="1" type="cond" truecount="1" falsecount="0"/>
862
+ <line num="28" count="12" type="stmt"/>
863
+ <line num="29" count="12" type="stmt"/>
864
+ <line num="30" count="12" type="stmt"/>
865
+ <line num="31" count="12" type="stmt"/>
866
+ <line num="32" count="1" type="cond" truecount="1" falsecount="0"/>
867
+ <line num="33" count="12" type="stmt"/>
868
+ <line num="34" count="12" type="stmt"/>
869
+ <line num="35" count="12" type="cond" truecount="1" falsecount="0"/>
870
+ <line num="36" count="12" type="stmt"/>
871
+ <line num="37" count="12" type="stmt"/>
872
+ <line num="38" count="12" type="cond" truecount="1" falsecount="0"/>
873
+ <line num="39" count="28" type="stmt"/>
874
+ <line num="40" count="28" type="stmt"/>
875
+ <line num="41" count="28" type="stmt"/>
876
+ <line num="42" count="28" type="stmt"/>
877
+ <line num="43" count="28" type="stmt"/>
878
+ <line num="44" count="28" type="stmt"/>
879
+ <line num="45" count="28" type="stmt"/>
880
+ <line num="46" count="28" type="stmt"/>
881
+ <line num="47" count="12" type="stmt"/>
882
+ <line num="48" count="12" type="stmt"/>
883
+ <line num="49" count="12" type="stmt"/>
884
+ <line num="50" count="12" type="stmt"/>
885
+ </file>
886
+ <file name="multicast.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/multicast.ts">
887
+ <metrics statements="113" coveredstatements="94" conditionals="17" coveredconditionals="15" methods="11" coveredmethods="9"/>
888
+ <line num="1" count="1" type="stmt"/>
889
+ <line num="2" count="1" type="stmt"/>
890
+ <line num="3" count="1" type="stmt"/>
891
+ <line num="4" count="1" type="stmt"/>
892
+ <line num="5" count="1" type="stmt"/>
893
+ <line num="6" count="1" type="stmt"/>
894
+ <line num="7" count="1" type="stmt"/>
895
+ <line num="8" count="1" type="stmt"/>
896
+ <line num="9" count="1" type="stmt"/>
897
+ <line num="10" count="1" type="stmt"/>
898
+ <line num="11" count="1" type="stmt"/>
899
+ <line num="12" count="1" type="cond" truecount="2" falsecount="0"/>
900
+ <line num="13" count="2" type="stmt"/>
901
+ <line num="14" count="2" type="stmt"/>
902
+ <line num="15" count="1" type="stmt"/>
903
+ <line num="16" count="1" type="stmt"/>
904
+ <line num="17" count="1" type="stmt"/>
905
+ <line num="18" count="1" type="stmt"/>
906
+ <line num="19" count="1" type="stmt"/>
907
+ <line num="20" count="1" type="stmt"/>
908
+ <line num="21" count="1" type="stmt"/>
909
+ <line num="22" count="1" type="cond" truecount="1" falsecount="0"/>
910
+ <line num="23" count="2" type="stmt"/>
911
+ <line num="24" count="2" type="stmt"/>
912
+ <line num="25" count="2" type="stmt"/>
913
+ <line num="26" count="2" type="stmt"/>
914
+ <line num="27" count="2" type="stmt"/>
915
+ <line num="28" count="2" type="stmt"/>
916
+ <line num="29" count="2" type="stmt"/>
917
+ <line num="30" count="1" type="cond" truecount="1" falsecount="0"/>
918
+ <line num="31" count="4" type="stmt"/>
919
+ <line num="32" count="4" type="stmt"/>
920
+ <line num="33" count="4" type="stmt"/>
921
+ <line num="34" count="4" type="stmt"/>
922
+ <line num="35" count="4" type="stmt"/>
923
+ <line num="36" count="4" type="cond" truecount="1" falsecount="0"/>
924
+ <line num="37" count="4" type="stmt"/>
925
+ <line num="38" count="4" type="stmt"/>
926
+ <line num="39" count="4" type="stmt"/>
927
+ <line num="40" count="4" type="stmt"/>
928
+ <line num="41" count="4" type="stmt"/>
929
+ <line num="42" count="4" type="stmt"/>
930
+ <line num="43" count="4" type="stmt"/>
931
+ <line num="44" count="4" type="stmt"/>
932
+ <line num="45" count="4" type="cond" truecount="1" falsecount="0"/>
933
+ <line num="46" count="2" type="stmt"/>
934
+ <line num="47" count="2" type="stmt"/>
935
+ <line num="48" count="4" type="stmt"/>
936
+ <line num="49" count="4" type="stmt"/>
937
+ <line num="50" count="4" type="cond" truecount="0" falsecount="1"/>
938
+ <line num="51" count="4" type="cond" truecount="0" falsecount="1"/>
939
+ <line num="52" count="0" type="stmt"/>
940
+ <line num="53" count="0" type="stmt"/>
941
+ <line num="54" count="0" type="stmt"/>
942
+ <line num="55" count="0" type="stmt"/>
943
+ <line num="56" count="4" type="stmt"/>
944
+ <line num="57" count="1" type="cond" truecount="1" falsecount="0"/>
945
+ <line num="58" count="15" type="stmt"/>
946
+ <line num="59" count="15" type="cond" truecount="1" falsecount="0"/>
947
+ <line num="60" count="24" type="stmt"/>
948
+ <line num="61" count="24" type="stmt"/>
949
+ <line num="62" count="24" type="stmt"/>
950
+ <line num="63" count="15" type="stmt"/>
951
+ <line num="64" count="1" type="stmt"/>
952
+ <line num="65" count="0" type="stmt"/>
953
+ <line num="66" count="0" type="stmt"/>
954
+ <line num="67" count="0" type="stmt"/>
955
+ <line num="68" count="0" type="stmt"/>
956
+ <line num="69" count="0" type="stmt"/>
957
+ <line num="70" count="0" type="stmt"/>
958
+ <line num="71" count="1" type="cond" truecount="1" falsecount="0"/>
959
+ <line num="72" count="2" type="stmt"/>
960
+ <line num="73" count="2" type="cond" truecount="1" falsecount="0"/>
961
+ <line num="74" count="2" type="stmt"/>
962
+ <line num="75" count="2" type="stmt"/>
963
+ <line num="76" count="2" type="stmt"/>
964
+ <line num="77" count="1" type="cond" truecount="1" falsecount="0"/>
965
+ <line num="78" count="24" type="stmt"/>
966
+ <line num="79" count="24" type="stmt"/>
967
+ <line num="80" count="24" type="stmt"/>
968
+ <line num="81" count="1" type="stmt"/>
969
+ <line num="82" count="0" type="stmt"/>
970
+ <line num="83" count="0" type="stmt"/>
971
+ <line num="84" count="0" type="stmt"/>
972
+ <line num="85" count="0" type="stmt"/>
973
+ <line num="86" count="0" type="stmt"/>
974
+ <line num="87" count="0" type="stmt"/>
975
+ <line num="88" count="0" type="stmt"/>
976
+ <line num="89" count="0" type="stmt"/>
977
+ <line num="90" count="0" type="stmt"/>
978
+ <line num="91" count="1" type="cond" truecount="1" falsecount="0"/>
979
+ <line num="92" count="2" type="stmt"/>
980
+ <line num="93" count="2" type="stmt"/>
981
+ <line num="94" count="2" type="cond" truecount="2" falsecount="0"/>
982
+ <line num="95" count="2" type="stmt"/>
983
+ <line num="96" count="2" type="stmt"/>
984
+ <line num="97" count="2" type="stmt"/>
985
+ <line num="98" count="2" type="stmt"/>
986
+ <line num="99" count="1" type="cond" truecount="1" falsecount="0"/>
987
+ <line num="100" count="2" type="stmt"/>
988
+ <line num="101" count="2" type="stmt"/>
989
+ <line num="102" count="2" type="stmt"/>
990
+ <line num="103" count="2" type="stmt"/>
991
+ <line num="104" count="2" type="stmt"/>
992
+ <line num="105" count="2" type="stmt"/>
993
+ <line num="106" count="2" type="stmt"/>
994
+ <line num="107" count="2" type="stmt"/>
995
+ <line num="108" count="1" type="stmt"/>
996
+ <line num="109" count="1" type="stmt"/>
997
+ <line num="110" count="1" type="stmt"/>
998
+ <line num="111" count="1" type="stmt"/>
999
+ <line num="112" count="1" type="stmt"/>
1000
+ <line num="113" count="1" type="stmt"/>
1001
+ </file>
1002
+ <file name="provideService.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/provideService.ts">
1003
+ <metrics statements="23" coveredstatements="23" conditionals="5" coveredconditionals="5" methods="4" coveredmethods="4"/>
1004
+ <line num="1" count="1" type="stmt"/>
1005
+ <line num="2" count="1" type="stmt"/>
1006
+ <line num="3" count="1" type="stmt"/>
1007
+ <line num="4" count="1" type="stmt"/>
1008
+ <line num="5" count="1" type="stmt"/>
1009
+ <line num="6" count="1" type="stmt"/>
1010
+ <line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
1011
+ <line num="8" count="1" type="stmt"/>
1012
+ <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
1013
+ <line num="10" count="2" type="cond" truecount="1" falsecount="0"/>
1014
+ <line num="11" count="2" type="stmt"/>
1015
+ <line num="12" count="2" type="stmt"/>
1016
+ <line num="13" count="1" type="stmt"/>
1017
+ <line num="14" count="1" type="stmt"/>
1018
+ <line num="15" count="1" type="stmt"/>
1019
+ <line num="16" count="1" type="cond" truecount="1" falsecount="0"/>
1020
+ <line num="17" count="1" type="stmt"/>
1021
+ <line num="18" count="1" type="stmt"/>
1022
+ <line num="19" count="1" type="stmt"/>
1023
+ <line num="20" count="1" type="stmt"/>
1024
+ <line num="21" count="1" type="cond" truecount="1" falsecount="0"/>
1025
+ <line num="22" count="1" type="stmt"/>
1026
+ <line num="23" count="1" type="stmt"/>
1027
+ </file>
1028
+ <file name="provideServiceEffect.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/provideServiceEffect.ts">
1029
+ <metrics statements="35" coveredstatements="35" conditionals="5" coveredconditionals="5" methods="4" coveredmethods="4"/>
1030
+ <line num="1" count="1" type="stmt"/>
1031
+ <line num="2" count="1" type="stmt"/>
1032
+ <line num="3" count="1" type="stmt"/>
1033
+ <line num="4" count="1" type="stmt"/>
1034
+ <line num="5" count="1" type="stmt"/>
1035
+ <line num="6" count="1" type="stmt"/>
1036
+ <line num="7" count="1" type="stmt"/>
1037
+ <line num="8" count="1" type="cond" truecount="1" falsecount="0"/>
1038
+ <line num="9" count="1" type="stmt"/>
1039
+ <line num="10" count="1" type="stmt"/>
1040
+ <line num="11" count="1" type="stmt"/>
1041
+ <line num="12" count="1" type="stmt"/>
1042
+ <line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
1043
+ <line num="14" count="2" type="cond" truecount="1" falsecount="0"/>
1044
+ <line num="15" count="2" type="stmt"/>
1045
+ <line num="16" count="2" type="stmt"/>
1046
+ <line num="17" count="1" type="stmt"/>
1047
+ <line num="18" count="1" type="stmt"/>
1048
+ <line num="19" count="1" type="stmt"/>
1049
+ <line num="20" count="1" type="stmt"/>
1050
+ <line num="21" count="1" type="stmt"/>
1051
+ <line num="22" count="1" type="cond" truecount="1" falsecount="0"/>
1052
+ <line num="23" count="1" type="stmt"/>
1053
+ <line num="24" count="1" type="stmt"/>
1054
+ <line num="25" count="1" type="stmt"/>
1055
+ <line num="26" count="1" type="stmt"/>
1056
+ <line num="27" count="1" type="stmt"/>
1057
+ <line num="28" count="1" type="stmt"/>
1058
+ <line num="29" count="1" type="cond" truecount="1" falsecount="0"/>
1059
+ <line num="30" count="1" type="stmt"/>
1060
+ <line num="31" count="1" type="stmt"/>
1061
+ <line num="32" count="1" type="stmt"/>
1062
+ <line num="33" count="1" type="stmt"/>
1063
+ <line num="34" count="1" type="stmt"/>
1064
+ <line num="35" count="1" type="stmt"/>
1065
+ </file>
1066
+ <file name="scan.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/scan.ts">
1067
+ <metrics statements="19" coveredstatements="19" conditionals="3" coveredconditionals="3" methods="1" coveredmethods="1"/>
1068
+ <line num="1" count="1" type="stmt"/>
1069
+ <line num="2" count="1" type="stmt"/>
1070
+ <line num="3" count="1" type="stmt"/>
1071
+ <line num="4" count="1" type="stmt"/>
1072
+ <line num="5" count="1" type="stmt"/>
1073
+ <line num="6" count="1" type="stmt"/>
1074
+ <line num="7" count="1" type="stmt"/>
1075
+ <line num="8" count="1" type="cond" truecount="1" falsecount="0"/>
1076
+ <line num="9" count="1" type="stmt"/>
1077
+ <line num="10" count="1" type="cond" truecount="1" falsecount="0"/>
1078
+ <line num="11" count="1" type="stmt"/>
1079
+ <line num="12" count="1" type="stmt"/>
1080
+ <line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
1081
+ <line num="14" count="3" type="stmt"/>
1082
+ <line num="15" count="3" type="stmt"/>
1083
+ <line num="16" count="3" type="stmt"/>
1084
+ <line num="17" count="1" type="stmt"/>
1085
+ <line num="18" count="1" type="stmt"/>
1086
+ <line num="19" count="1" type="stmt"/>
1087
+ </file>
1088
+ <file name="scanEffect.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/scanEffect.ts">
1089
+ <metrics statements="66" coveredstatements="63" conditionals="10" coveredconditionals="10" methods="7" coveredmethods="6"/>
1090
+ <line num="1" count="1" type="stmt"/>
1091
+ <line num="2" count="1" type="stmt"/>
1092
+ <line num="3" count="1" type="stmt"/>
1093
+ <line num="4" count="1" type="stmt"/>
1094
+ <line num="5" count="1" type="stmt"/>
1095
+ <line num="6" count="1" type="stmt"/>
1096
+ <line num="7" count="1" type="stmt"/>
1097
+ <line num="8" count="1" type="cond" truecount="1" falsecount="0"/>
1098
+ <line num="9" count="2" type="stmt"/>
1099
+ <line num="10" count="2" type="stmt"/>
1100
+ <line num="11" count="2" type="stmt"/>
1101
+ <line num="12" count="2" type="cond" truecount="1" falsecount="0"/>
1102
+ <line num="13" count="3" type="cond" truecount="1" falsecount="0"/>
1103
+ <line num="14" count="3" type="stmt"/>
1104
+ <line num="15" count="3" type="stmt"/>
1105
+ <line num="16" count="1" type="stmt"/>
1106
+ <line num="17" count="1" type="stmt"/>
1107
+ <line num="18" count="1" type="stmt"/>
1108
+ <line num="19" count="1" type="stmt"/>
1109
+ <line num="20" count="1" type="stmt"/>
1110
+ <line num="21" count="1" type="stmt"/>
1111
+ <line num="22" count="1" type="cond" truecount="1" falsecount="0"/>
1112
+ <line num="23" count="2" type="stmt"/>
1113
+ <line num="24" count="2" type="stmt"/>
1114
+ <line num="25" count="2" type="stmt"/>
1115
+ <line num="26" count="2" type="stmt"/>
1116
+ <line num="27" count="2" type="stmt"/>
1117
+ <line num="28" count="1" type="cond" truecount="1" falsecount="0"/>
1118
+ <line num="29" count="2" type="stmt"/>
1119
+ <line num="30" count="2" type="stmt"/>
1120
+ <line num="31" count="2" type="cond" truecount="1" falsecount="0"/>
1121
+ <line num="32" count="2" type="stmt"/>
1122
+ <line num="33" count="2" type="cond" truecount="1" falsecount="0"/>
1123
+ <line num="34" count="2" type="stmt"/>
1124
+ <line num="35" count="2" type="stmt"/>
1125
+ <line num="36" count="2" type="stmt"/>
1126
+ <line num="37" count="2" type="stmt"/>
1127
+ <line num="38" count="0" type="stmt"/>
1128
+ <line num="39" count="0" type="stmt"/>
1129
+ <line num="40" count="0" type="stmt"/>
1130
+ <line num="41" count="1" type="stmt"/>
1131
+ <line num="42" count="1" type="stmt"/>
1132
+ <line num="43" count="1" type="stmt"/>
1133
+ <line num="44" count="1" type="stmt"/>
1134
+ <line num="45" count="1" type="stmt"/>
1135
+ <line num="46" count="1" type="stmt"/>
1136
+ <line num="47" count="1" type="stmt"/>
1137
+ <line num="48" count="1" type="cond" truecount="1" falsecount="0"/>
1138
+ <line num="49" count="2" type="stmt"/>
1139
+ <line num="50" count="2" type="stmt"/>
1140
+ <line num="51" count="2" type="stmt"/>
1141
+ <line num="52" count="2" type="stmt"/>
1142
+ <line num="53" count="2" type="cond" truecount="1" falsecount="0"/>
1143
+ <line num="54" count="6" type="stmt"/>
1144
+ <line num="55" count="6" type="stmt"/>
1145
+ <line num="56" count="6" type="cond" truecount="1" falsecount="0"/>
1146
+ <line num="57" count="6" type="stmt"/>
1147
+ <line num="58" count="6" type="stmt"/>
1148
+ <line num="59" count="6" type="stmt"/>
1149
+ <line num="60" count="6" type="stmt"/>
1150
+ <line num="61" count="6" type="stmt"/>
1151
+ <line num="62" count="6" type="stmt"/>
1152
+ <line num="63" count="6" type="stmt"/>
1153
+ <line num="64" count="2" type="stmt"/>
1154
+ <line num="65" count="2" type="stmt"/>
1155
+ <line num="66" count="2" type="stmt"/>
1156
+ </file>
1157
+ <file name="skipRepeats.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/skipRepeats.ts">
1158
+ <metrics statements="43" coveredstatements="41" conditionals="13" coveredconditionals="13" methods="7" coveredmethods="6"/>
1159
+ <line num="1" count="1" type="stmt"/>
1160
+ <line num="2" count="1" type="stmt"/>
1161
+ <line num="3" count="1" type="stmt"/>
1162
+ <line num="4" count="1" type="stmt"/>
1163
+ <line num="5" count="1" type="stmt"/>
1164
+ <line num="6" count="1" type="stmt"/>
1165
+ <line num="7" count="1" type="stmt"/>
1166
+ <line num="8" count="1" type="cond" truecount="1" falsecount="0"/>
1167
+ <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
1168
+ <line num="10" count="0" type="stmt"/>
1169
+ <line num="11" count="0" type="stmt"/>
1170
+ <line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
1171
+ <line num="13" count="1" type="stmt"/>
1172
+ <line num="14" count="1" type="stmt"/>
1173
+ <line num="15" count="1" type="cond" truecount="1" falsecount="0"/>
1174
+ <line num="16" count="14" type="stmt"/>
1175
+ <line num="17" count="2" type="cond" truecount="1" falsecount="0"/>
1176
+ <line num="18" count="2" type="stmt"/>
1177
+ <line num="19" count="1" type="stmt"/>
1178
+ <line num="20" count="1" type="cond" truecount="1" falsecount="0"/>
1179
+ <line num="21" count="1" type="stmt"/>
1180
+ <line num="22" count="1" type="stmt"/>
1181
+ <line num="23" count="1" type="stmt"/>
1182
+ <line num="24" count="1" type="stmt"/>
1183
+ <line num="25" count="1" type="cond" truecount="1" falsecount="0"/>
1184
+ <line num="26" count="1" type="cond" truecount="1" falsecount="0"/>
1185
+ <line num="27" count="1" type="stmt"/>
1186
+ <line num="28" count="1" type="stmt"/>
1187
+ <line num="29" count="1" type="stmt"/>
1188
+ <line num="30" count="1" type="stmt"/>
1189
+ <line num="31" count="1" type="cond" truecount="1" falsecount="0"/>
1190
+ <line num="32" count="15" type="cond" truecount="2" falsecount="0"/>
1191
+ <line num="33" count="15" type="cond" truecount="1" falsecount="0"/>
1192
+ <line num="34" count="5" type="stmt"/>
1193
+ <line num="35" count="5" type="stmt"/>
1194
+ <line num="36" count="5" type="stmt"/>
1195
+ <line num="37" count="5" type="stmt"/>
1196
+ <line num="38" count="15" type="cond" truecount="1" falsecount="0"/>
1197
+ <line num="39" count="10" type="stmt"/>
1198
+ <line num="40" count="10" type="stmt"/>
1199
+ <line num="41" count="10" type="stmt"/>
1200
+ <line num="42" count="15" type="stmt"/>
1201
+ <line num="43" count="1" type="stmt"/>
1202
+ </file>
1203
+ <file name="slice.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/slice.ts">
1204
+ <metrics statements="44" coveredstatements="38" conditionals="14" coveredconditionals="13" methods="7" coveredmethods="6"/>
1205
+ <line num="1" count="1" type="stmt"/>
1206
+ <line num="2" count="1" type="stmt"/>
1207
+ <line num="3" count="1" type="stmt"/>
1208
+ <line num="4" count="1" type="stmt"/>
1209
+ <line num="5" count="1" type="stmt"/>
1210
+ <line num="6" count="1" type="stmt"/>
1211
+ <line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
1212
+ <line num="8" count="1" type="stmt"/>
1213
+ <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
1214
+ <line num="10" count="1" type="stmt"/>
1215
+ <line num="11" count="2" type="cond" truecount="1" falsecount="0"/>
1216
+ <line num="12" count="2" type="stmt"/>
1217
+ <line num="13" count="1" type="stmt"/>
1218
+ <line num="14" count="1" type="cond" truecount="1" falsecount="0"/>
1219
+ <line num="15" count="1" type="stmt"/>
1220
+ <line num="16" count="1" type="stmt"/>
1221
+ <line num="17" count="1" type="stmt"/>
1222
+ <line num="18" count="1" type="stmt"/>
1223
+ <line num="19" count="1" type="cond" truecount="1" falsecount="0"/>
1224
+ <line num="20" count="1" type="stmt"/>
1225
+ <line num="21" count="0" type="stmt"/>
1226
+ <line num="22" count="0" type="stmt"/>
1227
+ <line num="23" count="0" type="stmt"/>
1228
+ <line num="24" count="1" type="cond" truecount="1" falsecount="0"/>
1229
+ <line num="25" count="1" type="stmt"/>
1230
+ <line num="26" count="1" type="stmt"/>
1231
+ <line num="27" count="1" type="cond" truecount="1" falsecount="0"/>
1232
+ <line num="28" count="7" type="cond" truecount="1" falsecount="0"/>
1233
+ <line num="29" count="3" type="stmt"/>
1234
+ <line num="30" count="3" type="stmt"/>
1235
+ <line num="31" count="3" type="stmt"/>
1236
+ <line num="32" count="7" type="cond" truecount="1" falsecount="0"/>
1237
+ <line num="33" count="7" type="cond" truecount="0" falsecount="1"/>
1238
+ <line num="34" count="0" type="stmt"/>
1239
+ <line num="35" count="0" type="stmt"/>
1240
+ <line num="36" count="0" type="cond" truecount="1" falsecount="0"/>
1241
+ <line num="37" count="4" type="stmt"/>
1242
+ <line num="38" count="4" type="cond" truecount="3" falsecount="0"/>
1243
+ <line num="39" count="3" type="stmt"/>
1244
+ <line num="40" count="3" type="stmt"/>
1245
+ <line num="41" count="3" type="stmt"/>
1246
+ <line num="42" count="1" type="stmt"/>
1247
+ <line num="43" count="1" type="stmt"/>
1248
+ <line num="44" count="1" type="stmt"/>
1249
+ </file>
1250
+ <file name="startWith.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/startWith.ts">
1251
+ <metrics statements="14" coveredstatements="14" conditionals="3" coveredconditionals="3" methods="1" coveredmethods="1"/>
1252
+ <line num="1" count="1" type="stmt"/>
1253
+ <line num="2" count="1" type="stmt"/>
1254
+ <line num="3" count="1" type="stmt"/>
1255
+ <line num="4" count="1" type="stmt"/>
1256
+ <line num="5" count="1" type="stmt"/>
1257
+ <line num="6" count="1" type="stmt"/>
1258
+ <line num="7" count="1" type="stmt"/>
1259
+ <line num="8" count="1" type="cond" truecount="1" falsecount="0"/>
1260
+ <line num="9" count="1" type="stmt"/>
1261
+ <line num="10" count="1" type="cond" truecount="1" falsecount="0"/>
1262
+ <line num="11" count="1" type="stmt"/>
1263
+ <line num="12" count="1" type="stmt"/>
1264
+ <line num="13" count="1" type="stmt"/>
1265
+ <line num="14" count="1" type="cond" truecount="1" falsecount="0"/>
1266
+ </file>
1267
+ <file name="switchMap.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/switchMap.ts">
1268
+ <metrics statements="70" coveredstatements="70" conditionals="12" coveredconditionals="12" methods="4" coveredmethods="4"/>
1269
+ <line num="1" count="1" type="stmt"/>
1270
+ <line num="2" count="1" type="stmt"/>
1271
+ <line num="3" count="1" type="stmt"/>
1272
+ <line num="4" count="1" type="stmt"/>
1273
+ <line num="5" count="1" type="stmt"/>
1274
+ <line num="6" count="1" type="stmt"/>
1275
+ <line num="7" count="1" type="stmt"/>
1276
+ <line num="8" count="1" type="stmt"/>
1277
+ <line num="9" count="1" type="stmt"/>
1278
+ <line num="10" count="1" type="stmt"/>
1279
+ <line num="11" count="1" type="stmt"/>
1280
+ <line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
1281
+ <line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
1282
+ <line num="14" count="2" type="cond" truecount="1" falsecount="0"/>
1283
+ <line num="15" count="2" type="stmt"/>
1284
+ <line num="16" count="2" type="stmt"/>
1285
+ <line num="17" count="1" type="stmt"/>
1286
+ <line num="18" count="1" type="stmt"/>
1287
+ <line num="19" count="1" type="stmt"/>
1288
+ <line num="20" count="1" type="stmt"/>
1289
+ <line num="21" count="1" type="cond" truecount="1" falsecount="0"/>
1290
+ <line num="22" count="1" type="stmt"/>
1291
+ <line num="23" count="1" type="stmt"/>
1292
+ <line num="24" count="1" type="stmt"/>
1293
+ <line num="25" count="1" type="cond" truecount="1" falsecount="0"/>
1294
+ <line num="26" count="1" type="stmt"/>
1295
+ <line num="27" count="1" type="stmt"/>
1296
+ <line num="28" count="1" type="cond" truecount="1" falsecount="0"/>
1297
+ <line num="29" count="1" type="stmt"/>
1298
+ <line num="30" count="1" type="stmt"/>
1299
+ <line num="31" count="1" type="cond" truecount="1" falsecount="0"/>
1300
+ <line num="32" count="1" type="stmt"/>
1301
+ <line num="33" count="1" type="stmt"/>
1302
+ <line num="34" count="1" type="stmt"/>
1303
+ <line num="35" count="1" type="stmt"/>
1304
+ <line num="36" count="1" type="stmt"/>
1305
+ <line num="37" count="1" type="stmt"/>
1306
+ <line num="38" count="1" type="stmt"/>
1307
+ <line num="39" count="1" type="cond" truecount="1" falsecount="0"/>
1308
+ <line num="40" count="3" type="stmt"/>
1309
+ <line num="41" count="3" type="stmt"/>
1310
+ <line num="42" count="3" type="cond" truecount="1" falsecount="0"/>
1311
+ <line num="43" count="3" type="stmt"/>
1312
+ <line num="44" count="3" type="cond" truecount="1" falsecount="0"/>
1313
+ <line num="45" count="3" type="cond" truecount="1" falsecount="0"/>
1314
+ <line num="46" count="3" type="stmt"/>
1315
+ <line num="47" count="3" type="stmt"/>
1316
+ <line num="48" count="3" type="cond" truecount="1" falsecount="0"/>
1317
+ <line num="49" count="3" type="stmt"/>
1318
+ <line num="50" count="3" type="stmt"/>
1319
+ <line num="51" count="3" type="stmt"/>
1320
+ <line num="52" count="3" type="stmt"/>
1321
+ <line num="53" count="3" type="stmt"/>
1322
+ <line num="54" count="3" type="stmt"/>
1323
+ <line num="55" count="3" type="stmt"/>
1324
+ <line num="56" count="3" type="stmt"/>
1325
+ <line num="57" count="3" type="stmt"/>
1326
+ <line num="58" count="3" type="stmt"/>
1327
+ <line num="59" count="3" type="stmt"/>
1328
+ <line num="60" count="3" type="stmt"/>
1329
+ <line num="61" count="3" type="stmt"/>
1330
+ <line num="62" count="1" type="stmt"/>
1331
+ <line num="63" count="1" type="stmt"/>
1332
+ <line num="64" count="1" type="stmt"/>
1333
+ <line num="65" count="1" type="stmt"/>
1334
+ <line num="66" count="1" type="stmt"/>
1335
+ <line num="67" count="1" type="stmt"/>
1336
+ <line num="68" count="1" type="stmt"/>
1337
+ <line num="69" count="1" type="stmt"/>
1338
+ <line num="70" count="1" type="stmt"/>
1339
+ </file>
1340
+ <file name="withPermit.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/operator/withPermit.ts">
1341
+ <metrics statements="18" coveredstatements="18" conditionals="5" coveredconditionals="5" methods="4" coveredmethods="4"/>
1342
+ <line num="1" count="1" type="stmt"/>
1343
+ <line num="2" count="1" type="stmt"/>
1344
+ <line num="3" count="1" type="stmt"/>
1345
+ <line num="4" count="1" type="stmt"/>
1346
+ <line num="5" count="1" type="stmt"/>
1347
+ <line num="6" count="1" type="cond" truecount="1" falsecount="0"/>
1348
+ <line num="7" count="2" type="cond" truecount="1" falsecount="0"/>
1349
+ <line num="8" count="2" type="cond" truecount="1" falsecount="0"/>
1350
+ <line num="9" count="2" type="stmt"/>
1351
+ <line num="10" count="1" type="stmt"/>
1352
+ <line num="11" count="1" type="cond" truecount="1" falsecount="0"/>
1353
+ <line num="12" count="7" type="stmt"/>
1354
+ <line num="13" count="7" type="stmt"/>
1355
+ <line num="14" count="7" type="stmt"/>
1356
+ <line num="15" count="7" type="stmt"/>
1357
+ <line num="16" count="1" type="cond" truecount="1" falsecount="0"/>
1358
+ <line num="17" count="7" type="stmt"/>
1359
+ <line num="18" count="7" type="stmt"/>
1360
+ </file>
1361
+ </package>
1362
+ <package name="src.run">
1363
+ <metrics statements="105" coveredstatements="96" conditionals="16" coveredconditionals="16" methods="8" coveredmethods="6"/>
1364
+ <file name="collectAll.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/run/collectAll.ts">
1365
+ <metrics statements="17" coveredstatements="17" conditionals="3" coveredconditionals="3" methods="1" coveredmethods="1"/>
1366
+ <line num="1" count="1" type="stmt"/>
1367
+ <line num="2" count="1" type="stmt"/>
1368
+ <line num="3" count="1" type="stmt"/>
1369
+ <line num="4" count="1" type="stmt"/>
1370
+ <line num="5" count="1" type="stmt"/>
1371
+ <line num="6" count="1" type="stmt"/>
1372
+ <line num="7" count="1" type="stmt"/>
1373
+ <line num="8" count="1" type="stmt"/>
1374
+ <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
1375
+ <line num="10" count="28" type="cond" truecount="1" falsecount="0"/>
1376
+ <line num="11" count="28" type="stmt"/>
1377
+ <line num="12" count="28" type="stmt"/>
1378
+ <line num="13" count="28" type="cond" truecount="1" falsecount="0"/>
1379
+ <line num="14" count="104" type="stmt"/>
1380
+ <line num="15" count="104" type="stmt"/>
1381
+ <line num="16" count="104" type="stmt"/>
1382
+ <line num="17" count="104" type="stmt"/>
1383
+ </file>
1384
+ <file name="observe.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/run/observe.ts">
1385
+ <metrics statements="19" coveredstatements="19" conditionals="3" coveredconditionals="3" methods="3" coveredmethods="3"/>
1386
+ <line num="1" count="1" type="stmt"/>
1387
+ <line num="2" count="1" type="stmt"/>
1388
+ <line num="3" count="1" type="stmt"/>
1389
+ <line num="4" count="1" type="stmt"/>
1390
+ <line num="5" count="1" type="stmt"/>
1391
+ <line num="6" count="1" type="stmt"/>
1392
+ <line num="7" count="1" type="stmt"/>
1393
+ <line num="8" count="1" type="stmt"/>
1394
+ <line num="9" count="1" type="stmt"/>
1395
+ <line num="10" count="1" type="stmt"/>
1396
+ <line num="11" count="1" type="stmt"/>
1397
+ <line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
1398
+ <line num="13" count="28" type="cond" truecount="1" falsecount="0"/>
1399
+ <line num="14" count="28" type="stmt"/>
1400
+ <line num="15" count="28" type="stmt"/>
1401
+ <line num="16" count="1" type="stmt"/>
1402
+ <line num="17" count="1" type="cond" truecount="1" falsecount="0"/>
1403
+ <line num="18" count="28" type="stmt"/>
1404
+ <line num="19" count="28" type="stmt"/>
1405
+ </file>
1406
+ <file name="reduce.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/run/reduce.ts">
1407
+ <metrics statements="20" coveredstatements="20" conditionals="6" coveredconditionals="6" methods="1" coveredmethods="1"/>
1408
+ <line num="1" count="1" type="stmt"/>
1409
+ <line num="2" count="1" type="stmt"/>
1410
+ <line num="3" count="1" type="stmt"/>
1411
+ <line num="4" count="1" type="stmt"/>
1412
+ <line num="5" count="1" type="stmt"/>
1413
+ <line num="6" count="1" type="stmt"/>
1414
+ <line num="7" count="1" type="stmt"/>
1415
+ <line num="8" count="1" type="stmt"/>
1416
+ <line num="9" count="1" type="stmt"/>
1417
+ <line num="10" count="1" type="stmt"/>
1418
+ <line num="11" count="1" type="stmt"/>
1419
+ <line num="12" count="1" type="cond" truecount="2" falsecount="0"/>
1420
+ <line num="13" count="28" type="cond" truecount="1" falsecount="0"/>
1421
+ <line num="14" count="28" type="stmt"/>
1422
+ <line num="15" count="28" type="stmt"/>
1423
+ <line num="16" count="28" type="stmt"/>
1424
+ <line num="17" count="28" type="cond" truecount="2" falsecount="0"/>
1425
+ <line num="18" count="28" type="stmt"/>
1426
+ <line num="19" count="28" type="stmt"/>
1427
+ <line num="20" count="28" type="cond" truecount="1" falsecount="0"/>
1428
+ </file>
1429
+ <file name="run.ts" path="/Users/TylorSteinberger/code/tylors/typed-fp/packages/fx/src/run/run.ts">
1430
+ <metrics statements="49" coveredstatements="40" conditionals="4" coveredconditionals="4" methods="3" coveredmethods="1"/>
1431
+ <line num="1" count="1" type="stmt"/>
1432
+ <line num="2" count="1" type="stmt"/>
1433
+ <line num="3" count="1" type="stmt"/>
1434
+ <line num="4" count="1" type="stmt"/>
1435
+ <line num="5" count="1" type="stmt"/>
1436
+ <line num="6" count="1" type="stmt"/>
1437
+ <line num="7" count="1" type="stmt"/>
1438
+ <line num="8" count="1" type="stmt"/>
1439
+ <line num="9" count="1" type="stmt"/>
1440
+ <line num="10" count="1" type="stmt"/>
1441
+ <line num="11" count="1" type="stmt"/>
1442
+ <line num="12" count="1" type="stmt"/>
1443
+ <line num="13" count="0" type="stmt"/>
1444
+ <line num="14" count="0" type="stmt"/>
1445
+ <line num="15" count="0" type="stmt"/>
1446
+ <line num="16" count="0" type="stmt"/>
1447
+ <line num="17" count="0" type="stmt"/>
1448
+ <line num="18" count="0" type="stmt"/>
1449
+ <line num="19" count="0" type="stmt"/>
1450
+ <line num="20" count="1" type="cond" truecount="1" falsecount="0"/>
1451
+ <line num="21" count="28" type="stmt"/>
1452
+ <line num="22" count="28" type="stmt"/>
1453
+ <line num="23" count="28" type="stmt"/>
1454
+ <line num="24" count="28" type="cond" truecount="1" falsecount="0"/>
1455
+ <line num="25" count="28" type="cond" truecount="1" falsecount="0"/>
1456
+ <line num="26" count="28" type="stmt"/>
1457
+ <line num="27" count="28" type="stmt"/>
1458
+ <line num="28" count="28" type="stmt"/>
1459
+ <line num="29" count="28" type="stmt"/>
1460
+ <line num="30" count="28" type="stmt"/>
1461
+ <line num="31" count="28" type="stmt"/>
1462
+ <line num="32" count="0" type="stmt"/>
1463
+ <line num="33" count="0" type="stmt"/>
1464
+ <line num="34" count="28" type="stmt"/>
1465
+ <line num="35" count="28" type="stmt"/>
1466
+ <line num="36" count="28" type="stmt"/>
1467
+ <line num="37" count="28" type="stmt"/>
1468
+ <line num="38" count="28" type="stmt"/>
1469
+ <line num="39" count="28" type="stmt"/>
1470
+ <line num="40" count="28" type="stmt"/>
1471
+ <line num="41" count="28" type="stmt"/>
1472
+ <line num="42" count="28" type="stmt"/>
1473
+ <line num="43" count="28" type="stmt"/>
1474
+ <line num="44" count="28" type="stmt"/>
1475
+ <line num="45" count="28" type="cond" truecount="1" falsecount="0"/>
1476
+ <line num="46" count="26" type="stmt"/>
1477
+ <line num="47" count="26" type="stmt"/>
1478
+ <line num="48" count="26" type="stmt"/>
1479
+ <line num="49" count="26" type="stmt"/>
1480
+ </file>
1481
+ </package>
1482
+ </project>
1483
+ </coverage>