firstNotNull and LinkedSupervisor(Job|Scope)

This commit is contained in:
2021-06-11 17:32:13 +06:00
parent 71f9a505e0
commit 24033e0cac
4 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
package dev.inmo.micro_utils.common
fun <T> Iterable<T?>.firstNotNull() = first { it != null }!!