CopyMap<K, V>: CopyTagged & {
    [toStringTag]: "copyMap";
    payload: {
        keys: K[];
        values: V[];
    };
}

A Passable collection of entries with Keys that are all mutually distinguishable according to the key distributed equality semantics exposed by keyEQ, each with a corresponding Passable value.

Type Parameters

  • K extends unknown = any

  • V extends unknown = any

Type declaration

  • [toStringTag]: "copyMap"
  • payload: {
        keys: K[];
        values: V[];
    }
    • keys: K[]
    • values: V[]

Generated using TypeDoc