Package: effect
Module: RcMap
Represents the open/active state of an RcMap, containing the actual resource map that stores entries.
When to use
Use when handling an RcMap that can still accept operations and contains
stored entries.
Signature
export interface Open<K, A, E> {
readonly _tag: "Open"
readonly map: MutableHashMap.MutableHashMap<K, Entry<A, E>>
}
Since v4.0.0