projects/wms-framework/src/lib/baseframework/IUntypedDictionaryEnumerator.ts
Interface for manual untyped iterators
Properties |
Methods |
MoveNext |
MoveNext()
|
Move to the next value in the sequence
Returns :
boolean
{boolean} |
Current |
Current:
|
Type : unknown
|
Return this current element |
Key |
Key:
|
Type : unknown
|
Returns the current key |
Value |
Value:
|
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;
}