(
item: S1,
pure: Effect.Effect<A, E, FixEnv<R, Evt, S1, S2>>
)
| 66 | } |
| 67 | |
| 68 | function saveWithPure_< |
| 69 | R, |
| 70 | A, |
| 71 | E, |
| 72 | S1 extends T, |
| 73 | S2 extends T |
| 74 | >( |
| 75 | item: S1, |
| 76 | pure: Effect.Effect<A, E, FixEnv<R, Evt, S1, S2>> |
| 77 | ) { |
| 78 | return saveAllWithEffectInt( |
| 79 | runTerm(pure, item) |
| 80 | .pipe(Effect |
| 81 | .map(([item, events, a]) => [[item], events, a])) |
| 82 | ) |
| 83 | } |
| 84 | |
| 85 | function saveAllWithEffectInt< |
| 86 | P extends T, |
no test coverage detected
searching dependent graphs…