FlowExtensions<T> extension

on

Methods

debounce(Duration window) Flow<T>
Return a new flow that only emits values after window time has passed.
distinct() Flow<T>
Return a new flow that only emits values that are considered different using the == operator of the type
map<T2>(FlowMapper<T, T2> mapper) Flow<T2>
Return a new flow that maps from this flow's type to another type using mapper function.