effect-io-ai

Package: effect
Module: RcMap

RcMap.State.Open

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>>
  }

Source

Since v4.0.0