(self: Cache<Key, A, E, R>)
| 1358 | * @since 4.0.0 |
| 1359 | */ |
| 1360 | export const values = <Key, A, E, R>(self: Cache<Key, A, E, R>): Effect.Effect<Iterable<A>> => |
| 1361 | effect.map(entries(self), Iterable.map(([, value]) => value)) |
| 1362 | |
| 1363 | /** |
| 1364 | * Retrieves all key-value pairs from the cache as an iterable. This function |