RxListTransformations<T> extension
Collection transformation extensions
Properties
-
rxFirst
→ RxComputed<
T?> -
Available on Rx<
Get first element (or null)List< , provided by the RxListTransformations extensionT> >no setter -
rxIsEmpty
→ RxComputed<
bool> -
Available on Rx<
Check if list is emptyList< , provided by the RxListTransformations extensionT> >no setter -
rxLast
→ RxComputed<
T?> -
Available on Rx<
Get last element (or null)List< , provided by the RxListTransformations extensionT> >no setter -
rxLength
→ RxComputed<
int> -
Available on Rx<
Get list length as reactive valueList< , provided by the RxListTransformations extensionT> >no setter
Methods
-
mapList<
R> (R mapper(T)) → RxComputed< List< R> > -
Available on Rx<
Map list reactivelyList< , provided by the RxListTransformations extensionT> > -
sortedBy<
R extends Comparable> (R keySelector(T)) → RxComputed< List< T> > -
Available on Rx<
Sort list reactivelyList< , provided by the RxListTransformations extensionT> > -
whereList(
bool predicate(T)) → RxComputed< List< T> > -
Available on Rx<
Filter list reactivelyList< , provided by the RxListTransformations extensionT> >