core/com.tealium.prism.core.api.pubsub/Observable/mapNotNull mapNotNull open fun <R> mapNotNull(transform: (T) -> R?): Observable<R>Returns an observable that applies the given transform to each emission before passing it downstream. Only emissions that are non-null after the application of the transform will be emitted downstream.