Kevlar
2.0.13
common
kollections-interoperable
/
kollections
/
CollectionLike
Collection
Like
interface
CollectionLike
<
out
E
>
:
Iterable
<
E
>
,
Collection
<
E
>
Inheritors
Collection
MapLike
MutableCollectionLike
Members
Members & Extensions
Functions
contains
Link copied to clipboard
abstract
operator override
fun
contains
(
element
:
@
UnsafeVariance
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
override
fun
isEmpty
(
)
:
Boolean
iterator
Link copied to clipboard
abstract
operator
fun
iterator
(
)
:
Iterator
<
E
>
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
override
val
size
:
Int