* Retrieves the value associated with the specified key if it exists as a left. * Otherwise computes the value with the lookup function, puts it in the * cache, and returns it as a right.
(key: Key)
| 71 | * cache, and returns it as a right. |
| 72 | */ |
| 73 | getEither(key: Key): Effect.Effect<Either<Value, Value>, Error> |
| 74 | |
| 75 | /** |
| 76 | * Computes the value associated with the specified key, with the lookup |
no outgoing calls
no test coverage detected