(items, pure, batch?: "batched" | number)
| 199 | items: Iterable<S1>, |
| 200 | pure: Effect.Effect<A, E, FixEnv<R, Evt, readonly S1[], readonly S2[]>>, |
| 201 | batch: "batched" | number |
| 202 | ): Effect.Effect< |
| 203 | A[], |
| 204 | PureStoreError | E, |
| 205 | | RSchema |
| 206 | | RPublish |
| 207 | | Exclude<R, { |
| 208 | env: PureEnv<Evt, readonly S1[], readonly S2[]> |
| 209 | }> |
| 210 | > |
| 211 | } = ((items: Iterable<T>, pure: any, batch?: "batched" | number) => |
| 212 | batch |
| 213 | ? Effect.forEach( |
| 214 | Array.chunksOf([...items], batch === "batched" ? 100 : batch), |
| 215 | (batchItems) => |
nothing calls this directly
no test coverage detected
searching dependent graphs…