Kotlin Wrappers API Reference
Toggle table of contents
common
Platform filter
common
Switch theme
kotlin-js
/
js.collections
/
CollectionLike
Collection
Like
interface
CollectionLike
<
K
:
JsAny
?
,
out
V
:
JsAny
?
>
:
JsIterable
<
V
>
(
source
)
Inheritors
ListLike
ReadonlySet
Members
Functions
entries
Link copied to clipboard
abstract
fun
entries
(
)
:
JsIterator
<
JsTuple2
<
K
,
V
>
>
for
Each
Link copied to clipboard
abstract
fun
forEach
(
action
:
(
item
:
V
)
->
Unit
)
get
Link copied to clipboard
open
operator
fun
get
(
key
:
Symbol.iterator
)
:
(
)
->
JsIterator
<
V
>
iterator
Link copied to clipboard
open
inline operator
fun
iterator
(
)
:
Iterator
<
V
>
keys
Link copied to clipboard
abstract
fun
keys
(
)
:
JsIterator
<
K
>
values
Link copied to clipboard
abstract
fun
values
(
)
:
JsIterator
<
V
>