11 lines
269 B
Kotlin
11 lines
269 B
Kotlin
package com.simplemobiletools.smsmessenger.extensions
|
|
|
|
inline fun <T> List<T>.indexOfFirstOrNull(predicate: (T) -> Boolean): Int? {
|
|
var index = 0
|
|
for (item in this) {
|
|
if (predicate(item))
|
|
return index
|
|
index++
|
|
}
|
|
return null
|
|
}
|