toggle menu
Kotlin Wrappers API Reference
js
switch theme
search in API
kotlin-js
/
js.iterable
Package-level
declarations
Types
Functions
Types
Async
Iterable
Link copied to clipboard
external
interface
AsyncIterable
<
out
T
>
Async
Iterator
Link copied to clipboard
abstract
external
class
AsyncIterator
<
out
T
>
:
AsyncIteratorLike
<
T
>
,
AsyncIterable
<
T
>
Async
Iterator
Like
Link copied to clipboard
external
interface
AsyncIteratorLike
<
out
T
>
Iterator
Result
Link copied to clipboard
sealed
external
interface
IteratorResult
<
out
T
,
out
TReturn
>
Iterator
Return
Result
Link copied to clipboard
external
class
IteratorReturnResult
<
out
TReturn
>
:
IteratorResult
<
Void
,
TReturn
>
Iterator
Yield
Result
Link copied to clipboard
external
class
IteratorYieldResult
<
out
TYield
>
:
IteratorResult
<
TYield
,
Void
>
Js
Iterable
Link copied to clipboard
external
interface
JsIterable
<
out
T
>
Js
Iterator
Link copied to clipboard
abstract
external
class
JsIterator
<
out
T
>
:
JsIteratorLike
<
T
>
,
JsIterable
<
T
>
Js
Iterator
Like
Link copied to clipboard
external
interface
JsIteratorLike
<
out
T
>
Suspendable
Iterator
Link copied to clipboard
interface
SuspendableIterator
<
out
T
>
Functions
as
Sequence
Link copied to clipboard
fun
<
T
>
JsIterator
<
T
>
.
asSequence
(
)
:
Sequence
<
T
>
Suspendable
Iterator
Link copied to clipboard
fun
<
T
>
SuspendableIterator
(
source
:
ChannelIterator
<
T
>
)
:
SuspendableIterator
<
T
>
to
Array
Link copied to clipboard
fun
<
T
>
JsIterator
<
T
>
.
toArray
(
)
:
ReadonlyArray
<
T
>
to
List
Link copied to clipboard
fun
<
T
>
JsIterator
<
T
>
.
toList
(
)
:
List
<
T
>
to
Set
Link copied to clipboard
fun
<
T
>
JsIterator
<
T
>
.
toSet
(
)
:
Set
<
T
>