Searched defs:filterJust (Results 1 – 2 of 2) sorted by relevance
148 fun <A> Iterable<Maybe<A>>.filterJust(): List<A> = asSequence().filterJust().toList() in filterJust() method151 fun <A> Sequence<Maybe<A>>.filterJust(): Sequence<A> = filterIsInstance<Just<A>>().map { it.value } in filterJust() method
150 @ExperimentalFrpApi fun <A> TFlow<Maybe<A>>.filterJust(): TFlow<A> = mapMaybe { it } in <lambda>() method