/** * Filters any 'None' values. * * @tsplus getter effect/core/stream/Stream collectSome */ export function collectSome( self: Stream> ): Stream { return self.collect((option) => option.isSome() ? Maybe.some(option.value) : Maybe.none) }