Class HashSetIterator<K>

Type Parameters

  • K

Hierarchy

Properties

Methods

Constructors

Accessors

Properties

iteratorType: IteratorType

Description

Iterator's type.

Example

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

Description

The container pointed to by the iterator.

Methods

Constructors

Accessors

  • get pointer(): K
  • Description

    Pointers to element.

    Returns

    The value of the pointer's element.

    Example

    const val = container.begin().pointer;
    

    Returns K

Generated using TypeDoc