Kotlin Wrappers API Reference
Toggle table of contents
js
web
Target filter
js
web
Switch theme
Search in API
Skip to content
Kotlin Wrappers API Reference
kotlin-js
/
js.iterable
Package-level
declarations
Types
Functions
Types
Async
Iterable
Link copied to clipboard
web
interface
AsyncIterable
<
out
T
:
JsAny
?
>
Async
Iterator
Link copied to clipboard
web
interface
AsyncIterator
<
out
T
:
JsAny
?
>
:
AsyncIteratorLike
<
T
>
,
AsyncIterable
<
T
>
,
AsyncDisposable
Async
Iterator
Like
Link copied to clipboard
web
interface
AsyncIteratorLike
<
out
T
:
JsAny
?
>
Iterator
Result
Link copied to clipboard
web
interface
IteratorResult
<
out
T
:
JsAny
?
,
out
TReturn
:
JsAny
?
>
Iterator
Return
Result
Link copied to clipboard
web
interface
IteratorReturnResult
<
out
TReturn
:
JsAny
?
>
:
IteratorResult
<
Void
,
TReturn
>
Iterator
Yield
Result
Link copied to clipboard
web
interface
IteratorYieldResult
<
out
TYield
:
JsAny
?
>
:
IteratorResult
<
TYield
,
Void
>
Js
Iterable
Link copied to clipboard
web
interface
JsIterable
<
out
T
:
JsAny
?
>
Js
Iterator
Link copied to clipboard
web
abstract
class
JsIterator
<
out
T
:
JsAny
?
>
:
JsIteratorLike
<
T
>
,
JsIterable
<
T
>
,
Disposable
Js
Iterator
Like
Link copied to clipboard
web
interface
JsIteratorLike
<
out
T
:
JsAny
?
>
Functions
as
Flow
Link copied to clipboard
web
fun
<
T
:
JsAny
?
>
AsyncIterable
<
T
>
.
asFlow
(
)
:
Flow
<
T
>
as
Sequence
Link copied to clipboard
js
fun
<
T
>
JsIterator
<
T
>
.
asSequence
(
)
:
Sequence
<
T
>
get
Link copied to clipboard
web
operator
fun
<
T
:
JsAny
?
>
AsyncIterable
<
T
>
.
get
(
key
:
Symbol.asyncIterator
)
:
(
)
->
AsyncIterator
<
T
>
operator
fun
<
T
:
JsAny
?
>
JsIterable
<
T
>
.
get
(
key
:
Symbol.iterator
)
:
(
)
->
JsIterator
<
T
>
is
Yield
Link copied to clipboard
web
inline
fun
<
T
:
JsAny
?
,
TReturn
:
JsAny
?
>
isYield
(
result
:
IteratorResult
<
T
,
TReturn
>
)
:
Boolean
iterator
Link copied to clipboard
web
operator
fun
<
T
:
JsAny
?
>
JsIterable
<
T
>
.
iterator
(
)
:
Iterator
<
T
>
to
Array
Link copied to clipboard
js
fun
<
T
>
JsIterator
<
T
>
.
toArray
(
)
:
ReadonlyArray
<
T
>
to
List
Link copied to clipboard
js
fun
<
T
>
JsIterator
<
T
>
.
toList
(
)
:
List
<
T
>
to
Set
Link copied to clipboard
js
fun
<
T
>
JsIterator
<
T
>
.
toSet
(
)
:
Set
<
T
>