raptor
    Preparing search index...

    Interface MapRead<K, V>

    General Map subpart, constrained to some read-only features.

    interface MapRead<K, V> {
        "[iterator]": () => MapIterator<[K, V]>;
        get: (key: K) => undefined | V;
    }

    Type Parameters

    • K
    • V
    Index

    Properties

    Properties

    "[iterator]": () => MapIterator<[K, V]>
    get: (key: K) => undefined | V