<@U4G1MAN14> Not sure I understand your question c...
# announcements
r
@Xabier Gorostidi Not sure I understand your question correctly, but your snippet can be converted into kotlin like this:
Copy code
fun <T> bindToLifecycle(): Observable.Transformer<T, T> {
    return { source -> source.takeUntil {
        ...
    }}
}