Endo API documentation
    Preparing search index...

    Interface CacheMapCell<K, V>

    interface CacheMapCell<K, V> {
        data: SingleEntryMap<K, V>;
        id: number;
        next: CacheMapCell<K, V>;
        prev: CacheMapCell<K, V>;
    }

    Type Parameters

    • K
    • V
    Index

    Properties

    Properties

    id: number

    for debugging

    next: CacheMapCell<K, V>
    prev: CacheMapCell<K, V>