(
items: Iterable<S1>,
pure: Effect.Effect<A, E, FixEnv<R, Evt, readonly S1[], readonly S2[]>>
)
| 51 | })) |
| 52 | ) |
| 53 | function saveManyWithPure_< |
| 54 | R, |
| 55 | A, |
| 56 | E, |
| 57 | S1 extends T, |
| 58 | S2 extends T |
| 59 | >( |
| 60 | items: Iterable<S1>, |
| 61 | pure: Effect.Effect<A, E, FixEnv<R, Evt, readonly S1[], readonly S2[]>> |
| 62 | ) { |
| 63 | return saveAllWithEffectInt( |
| 64 | runTerm(pure, [...items]) |
| 65 | ) |
| 66 | } |
| 67 | |
| 68 | function saveWithPure_< |
| 69 | R, |
no test coverage detected
searching dependent graphs…