Kevlar
2.0.13
common
kollections-interoperable
/
kollections
/
MapLike
Map
Like
interface
MapLike
<
K
,
out
V
>
:
Map
<
K
,
V
>
,
CollectionLike
<
MapEntry
<
K
,
V
>
>
Inheritors
Map
MutableMapLike
Members
Members & Extensions
Functions
contains
Link copied to clipboard
abstract
operator override
fun
contains
(
element
:
MapEntry
<
K
,
V
>
)
:
Boolean
contains
All
Link copied to clipboard
abstract
fun
containsAll
(
elements
:
Collection
<
MapEntry
<
K
,
V
>
>
)
:
Boolean
contains
Key
Link copied to clipboard
open
override
fun
containsKey
(
key
:
K
)
:
Boolean
contains
Value
Link copied to clipboard
open
override
fun
containsValue
(
value
:
@
UnsafeVariance
V
)
:
Boolean
first
Link copied to clipboard
abstract
fun
first
(
)
:
MapEntry
<
K
,
V
>
first
Or
Null
Link copied to clipboard
abstract
fun
firstOrNull
(
)
:
MapEntry
<
K
,
V
>
?
get
Link copied to clipboard
abstract
operator override
fun
get
(
key
:
K
)
:
V
?
get
Value
Link copied to clipboard
abstract
fun
getValue
(
key
:
K
)
:
V
is
Empty
Link copied to clipboard
abstract
fun
isEmpty
(
)
:
Boolean
iterator
Link copied to clipboard
abstract
operator
fun
iterator
(
)
:
Iterator
<
MapEntry
<
K
,
V
>
>
to
IList
Link copied to clipboard
inline
fun
<
E
>
Collection
<
E
>
.
toIList
(
)
:
List
<
E
>
to
IMap
Link copied to clipboard
inline
fun
<
K
,
V
>
Map
<
K
,
V
>
.
toIMap
(
)
:
Map
<
K
,
V
>
to
IMutable
List
Link copied to clipboard
inline
fun
<
E
>
Collection
<
E
>
.
toIMutableList
(
)
:
MutableList
<
E
>
to
IMutable
Map
Link copied to clipboard
inline
fun
<
K
,
V
>
Map
<
K
,
V
>
.
toIMutableMap
(
)
:
MutableMap
<
K
,
V
>
to
IMutable
Set
Link copied to clipboard
inline
fun
<
E
>
Collection
<
E
>
.
toIMutableSet
(
)
:
MutableSet
<
E
>
to
ISet
Link copied to clipboard
inline
fun
<
E
>
Collection
<
E
>
.
toISet
(
)
:
Set
<
E
>
Properties
entries
Link copied to clipboard
abstract
val
entries
:
Set
<
Map.Entry
<
K
,
V
>
>
keys
Link copied to clipboard
abstract
override
val
keys
:
Set
<
K
>
pairs
Link copied to clipboard
abstract
val
pairs
:
Set
<
MapEntry
<
K
,
V
>
>
size
Link copied to clipboard
abstract
override
val
size
:
Int
values
Link copied to clipboard
abstract
override
val
values
:
Collection
<
V
>