Searched refs:filterNot (Results 1 – 12 of 12) sorted by relevance
52 assertEquals(0, flow.filterNot { true }.sum()) in <lambda>()53 assertEquals(3, flow.filterNot { false }.sum()) in <lambda>()58 val sum = emptyFlow<Int>().filterNot { true }.sum() in <lambda>()74 }.filterNot { in <lambda>()
34 val parts = qualifiedName.map { identifierToFilename(it) }.filterNot { it.isEmpty() } in relativePathToNode()
27 public inline fun <T> Flow<T>.filterNot(crossinline predicate: suspend (T) -> Boolean): Flow<T> = t… in filterNot() method
130 val targetPlatforms = platforms.filterNot { it.isKotlinVersion() || it.isJREVersion() } in calculateDataAttributes()
154 val targetPlatforms = platforms.filterNot { it.isKotlinVersion() || it.isJREVersion() } in calculateDataAttributes()
274 node.path.filterNot { it.name.isEmpty() }.map { link(node, it) }.distinct() in <lambda>()471 … val breakdownByLocation = node.path.filterNot { it.name.isEmpty() }.map { link(node, it) } in <lambda>()
278 …val supertypes = node.details(NodeKind.Supertype).filterNot { it.qualifiedNameFromType() in ignore… in <lambda>()
244 .filterNot { it.node?.elementType == JavaDocTokenType.DOC_COMMENT_LEADING_ASTERISKS } in parseDocumentation()
1118 .filterNot { (_, values) -> values.isEmpty() } in <lambda>()
831 public fun <E> ReceiveChannel<E>.filterNot(context: CoroutineContext = Dispatchers.Unconfined, pred… in filterNot() method
664 …public static final fun filterNot (Lkotlinx/coroutines/channels/ReceiveChannel;Lkotlin/coroutines/…665 …public static synthetic fun filterNot$default (Lkotlinx/coroutines/channels/ReceiveChannel;Lkotlin…959 …public static final fun filterNot (Lkotlinx/coroutines/flow/Flow;Lkotlin/jvm/functions/Function2;)…
715 * Added context argument to `Channel.filterNot` (PR by @jcornaz).