(first: QueryCacheUpdater, second: QueryCacheUpdater)
| 161 | console.warn(`Query ${query.id} has not been used yet; nothing to update`) |
| 162 | } |
| 163 | return |
| 164 | } |
| 165 | const atom: Atom.Writable<AsyncResult.AsyncResult<A, E>, AsyncResult.AsyncResult<A, E>> = family(input) |
| 166 | const current = registry.get(atom) |
| 167 | const next = AsyncResult.map(current, updater) |
| 168 | registry.set(atom, next) |
| 169 | } |
| 170 | }) |
| 171 |
no test coverage detected
searching dependent graphs…