Kevlar
2.0.13
common
kollections-interoperable
/
kollections
/
MutableCollectionLike
Mutable
Collection
Like
interface
MutableCollectionLike
<
E
>
:
MutableCollection
<
E
>
,
CollectionLike
<
E
>
Inheritors
MutableCollection
Members
Members & Extensions
Functions
add
Link copied to clipboard
abstract
override
fun
add
(
element
:
E
)
:
Boolean
add
All
Link copied to clipboard
abstract
fun
addAll
(
elements
:
Collection
<
E
>
)
:
Boolean
clear
Link copied to clipboard
abstract
override
fun
clear
(
)
contains
Link copied to clipboard
abstract
operator
fun
contains
(
element
:
E
)
:
Boolean
contains
All
Link copied to clipboard
abstract
fun
containsAll
(
elements
:
Collection
<
E
>
)
:
Boolean
first
Link copied to clipboard
abstract
fun
first
(
)
:
E
first
Or
Null
Link copied to clipboard
abstract
fun
firstOrNull
(
)
:
E
?
is
Empty
Link copied to clipboard
abstract
fun
isEmpty
(
)
:
Boolean
iterator
Link copied to clipboard
abstract
operator override
fun
iterator
(
)
:
MutableIterator
<
E
>
remove
Link copied to clipboard
abstract
override
fun
remove
(
element
:
E
)
:
Boolean
remove
All
Link copied to clipboard
abstract
fun
removeAll
(
elements
:
Collection
<
E
>
)
:
Boolean
retain
All
Link copied to clipboard
abstract
fun
retainAll
(
elements
:
Collection
<
E
>
)
:
Boolean
to
IList
Link copied to clipboard
inline
fun
<
E
>
Collection
<
E
>
.
toIList
(
)
:
List
<
E
>
to
IMutable
List
Link copied to clipboard
inline
fun
<
E
>
Collection
<
E
>
.
toIMutableList
(
)
:
MutableList
<
E
>
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
size
Link copied to clipboard
abstract
val
size
:
Int