Minix
5.0.0-alpha
module-common
/
dev.racci.minix.api.utils.collections
/
CollectionUtils
/
If
/
ifEmpty
if
Empty
@
JvmName
(
name
=
"ifEmptyCollection"
)
inline suspend
fun
<
R
,
C
:
Collection
<
*
>
>
ifEmpty
(
collection
:
C
,
crossinline
action
:
suspend
C
.
(
)
->
R
)
:
Option
<
R
>
@
JvmName
(
name
=
"ifEmptyArray"
)
inline suspend
fun
<
R
,
T
>
ifEmpty
(
array
:
Array
<
T
>
,
crossinline
action
:
suspend
Array
<
T
>
.
(
)
->
R
)
:
Option
<
R
>