* Retrieves the value associated with the specified key if it exists. * Otherwise computes the value with the lookup function, puts it in the * cache, and returns it.
(key: Key)
| 64 | * cache, and returns it. |
| 65 | */ |
| 66 | get(key: Key): Effect.Effect<Value, Error> |
| 67 | |
| 68 | /** |
| 69 | * Retrieves the value associated with the specified key if it exists as a left. |
no outgoing calls