Class HashMapIterator<K, V>

Type Parameters

  • K

  • V

Hierarchy

Properties

Methods

Constructors

Accessors

Properties

iteratorType: IteratorType

Description

Iterator's type.

Example

console.log(container.end().iteratorType === IteratorType.NORMAL);  // true
container: HashMap<K, V>

Description

The container pointed to by the iterator.

Methods

Constructors

Accessors

  • get pointer(): [K, V]
  • Description

    Pointers to element.

    Returns

    The value of the pointer's element.

    Example

    const val = container.begin().pointer;
    

    Returns [K, V]

Generated using TypeDoc