File

projects/wms-framework/src/lib/baseframework/IUntypedDictionaryEnumerator.ts

Description

Interface for manual untyped iterators

Index

Properties
Methods

Methods

MoveNext
MoveNext()

Move to the next value in the sequence

Returns : boolean

{boolean}

Properties

Current
Current: unknown
Type : unknown

Return this current element

Key
Key: unknown
Type : unknown

Returns the current key

Value
Value: unknown
Type : unknown

Returns the current value

export interface IUntypedDictionaryEnumerator {
  /**
   *  Return this current element
   *
   * @type {unknown}
   * @memberof IUntypedDictionaryEnumerator
   */
  Current: unknown;

  /**
   * Returns the current key
   *
   * @type {unknown}
   * @memberof IUntypedDictionaryEnumerator
   */
  Key: unknown;

  /**
   * Returns the current value
   *
   * @type {unknown}
   * @memberof IUntypedDictionaryEnumerator
   */
  Value: unknown;

  /**
   *  Move to the next value in the sequence
   *
   * @return {*}  {boolean}
   * @memberof IUntypedDictionaryEnumerator
   */
  MoveNext(): boolean;
}

result-matching ""

    No results matching ""