Home
last modified time | relevance | path

Searched defs:firstOrNull (Results 1 – 4 of 4) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/terminal/
DReduce.kt122 public suspend fun <T> Flow<T>.firstOrNull(): T? { in firstOrNull() method
135 public suspend fun <T> Flow<T>.firstOrNull(predicate: suspend (T) -> Boolean): T? { in firstOrNull() method
/external/guava/guava/src/com/google/common/collect/
DAbstractSequentialIterator.java50 protected AbstractSequentialIterator(@Nullable T firstOrNull) { in AbstractSequentialIterator()
/external/guava/android/guava/src/com/google/common/collect/
DAbstractSequentialIterator.java50 protected AbstractSequentialIterator(@NullableDecl T firstOrNull) { in AbstractSequentialIterator()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DChannels.common.kt352 public suspend fun <E> ReceiveChannel<E>.firstOrNull(): E? = in firstOrNull() method
373 public suspend inline fun <E> ReceiveChannel<E>.firstOrNull(predicate: (E) -> Boolean): E? { in firstOrNull() method