(self: ScopedCache<Key, A, E, R>)
| 774 | * @since 4.0.0 |
| 775 | */ |
| 776 | export const values = <Key, A, E, R>(self: ScopedCache<Key, A, E, R>): Effect.Effect<Array<A>> => |
| 777 | effect.map(entries(self), Arr.map(([, value]) => value)) |
| 778 | |
| 779 | /** |
| 780 | * Retrieves all key-value pairs from the cache as an array. This function |