Kone
Toggle table of contents
0.0.0-experiment
common
Platform filter
common
Switch theme
Search in API
Kone
kone.util.collectionOperations
/
dev.lounres.kone.util.collectionOperations
/
firstThatOrNull
first
That
Or
Null
inline
fun
<
T
>
Iterable
<
T
>
.
firstThatOrNull
(
predicate
:
(
index
:
Int
,
T
)
->
Boolean
)
:
T
?
(
source
)
inline
fun
<
T
>
Array
<
T
>
.
firstThatOrNull
(
predicate
:
(
index
:
Int
,
T
)
->
Boolean
)
:
T
?
(
source
)
inline
fun
ByteArray
.
firstThatOrNull
(
predicate
:
(
index
:
Int
,
Byte
)
->
Boolean
)
:
Byte
?
(
source
)
inline
fun
ShortArray
.
firstThatOrNull
(
predicate
:
(
index
:
Int
,
Short
)
->
Boolean
)
:
Short
?
(
source
)
inline
fun
IntArray
.
firstThatOrNull
(
predicate
:
(
index
:
Int
,
Int
)
->
Boolean
)
:
Int
?
(
source
)
inline
fun
LongArray
.
firstThatOrNull
(
predicate
:
(
index
:
Int
,
Long
)
->
Boolean
)
:
Long
?
(
source
)
inline
fun
FloatArray
.
firstThatOrNull
(
predicate
:
(
index
:
Int
,
Float
)
->
Boolean
)
:
Float
?
(
source
)
inline
fun
DoubleArray
.
firstThatOrNull
(
predicate
:
(
index
:
Int
,
Double
)
->
Boolean
)
:
Double
?
(
source
)
inline
fun
BooleanArray
.
firstThatOrNull
(
predicate
:
(
index
:
Int
,
Boolean
)
->
Boolean
)
:
Boolean
?
(
source
)
inline
fun
CharArray
.
firstThatOrNull
(
predicate
:
(
index
:
Int
,
Char
)
->
Boolean
)
:
Char
?
(
source
)