Searched defs:mapMaybe (Results 1 – 3 of 3) sorted by relevance
233 fun <A, B> Iterable<A>.mapMaybe(transform: (A) -> Maybe<B>): List<B> = in mapMaybe() method240 fun <A, B> Sequence<A>.mapMaybe(transform: (A) -> Maybe<B>): Sequence<B> = in mapMaybe() method
80 def mapMaybe(func: Callable[[T], S | None], xs: Iterable[T]) -> Iterator[S]: function
124 fun <A, B> TFlow<A>.mapMaybe(transform: suspend FrpTransactionScope.(A) -> Maybe<B>): TFlow<B> { in mapMaybe() method