als-unhooked
    Preparing search index...

    Interface MapLike<K, V>

    interface MapLike<K, V> {
        "[iterator]"(): Iterator<[K, V]>;
        entries(): Iterable<[K, V]>;
        get(k: K): V;
        set(k: K, v: V): void;
    }

    Type Parameters

    • K
    • V
    Index

    Methods