(f: (i: I) => Effect.Effect<A, E, R>)
| 79 | } |
| 80 | |
| 81 | export function ifDiffR<I, R, E, A>(f: (i: I) => Effect.Effect<A, E, R>) { |
| 82 | return (n: I, orig: I) => ifDiff_(n, orig, f) |
| 83 | } |
| 84 | |
| 85 | export function ifDiff_<I, R, E, A>( |
| 86 | n: I, |
nothing calls this directly
no test coverage detected
searching dependent graphs…