RxTransformations<T> extension
Transformation extensions for reactive values
- on
-
- Rx<
T>
- Rx<
Methods
-
asNullable(
) → RxComputed< T?> -
Available on Rx<
Convert to nullable typeT> , provided by the RxTransformations extension -
combineLatest<
U, R> (Rx< U> other, R combiner(T, U)) → RxComputed<R> -
Available on Rx<
Combine with another reactive valueT> , provided by the RxTransformations extension -
distinctMap<
R> (R mapper(T)) → RxComputed< R> -
Available on Rx<
Create a reactive value that only updates when the mapped value changesT> , provided by the RxTransformations extension -
filter(
bool predicate(T)) → RxComputed< T?> -
Available on Rx<
Filter values based on a predicateT> , provided by the RxTransformations extension -
skip(
int count) → RxComputed< T?> -
Available on Rx<
Skip the first n valuesT> , provided by the RxTransformations extension -
switchMap<
R> (RxComputed< R> mapper(T)) → RxComputed<R> -
Available on Rx<
Switch to a new reactive value based on current valueT> , provided by the RxTransformations extension -
take(
int count) → RxComputed< T?> -
Available on Rx<
Take the first n valuesT> , provided by the RxTransformations extension -
transform<
R> (R mapper(T)) → RxComputed< R> -
Available on Rx<
Transform this reactive value to another typeT> , provided by the RxTransformations extension -
whereNotNull(
[T? defaultValue]) → RxComputed< T> -
Available on Rx<
Handle null values with a defaultT> , provided by the RxTransformations extension