(item: A)
| 46 | return core.flatMap(this.getOrCreatePool(key), pool.get) |
| 47 | } |
| 48 | invalidate(item: A): Effect.Effect<void> { |
| 49 | return core.flatMap(this.activePools, core.forEachSequentialDiscard((pool) => pool.invalidate(item))) |
| 50 | } |
| 51 | pipe() { |
| 52 | return pipeArguments(this, arguments) |
| 53 | } |
nothing calls this directly
no test coverage detected