Iterable

Moduleejs
Definition class Iterable
StabilityEvolving.

Iterable is an internal interface used by native types to provide iterators for use in for/in statements.


Properties

QualifiersPropertyTypeDescription
No properties defined

Iterable Methods

QualifiersMethod
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.