Iterable
Module | ejs |
Definition | class Iterable |
Stability | Evolving. |
Iterable is an internal interface used by native types to provide iterators for use in for/in statements.
Properties
Qualifiers | Property | Type | Description |
---|---|---|---|
No properties defined |
Iterable Methods
Qualifiers | Method |
---|---|
get(): Iterator | |
Get an Iterator for use with for/in. | |
getValues(): Iterator | |
Get an Iterator for use with for each in. |
Method Detail
get(): Iterator
Get an Iterator for use with for/in.
- Returns
- An Iterator.
getValues(): Iterator
Get an Iterator for use with for each in.
- Returns
- An Iterator.