IterableCellExtension<T> extension
Provides Iterable properties and methods directly on cells holding Iterables
s.
Properties
-
first
→ ValueCell<
T> -
Available on ValueCell<
Returns a cell which evaluates to Iterable.first applied on the value in this cell.Iterable< , provided by the IterableCellExtension extensionT> >no setter -
isEmpty
→ ValueCell<
bool> -
Available on ValueCell<
Returns a cell which evaluates to Iterable.isEmpty applied on the value in this cell.Iterable< , provided by the IterableCellExtension extensionT> >no setter -
isNotEmpty
→ ValueCell<
bool> -
Available on ValueCell<
Returns a cell which evaluates to Iterable.isNotEmpty applied on the value in this cell.Iterable< , provided by the IterableCellExtension extensionT> >no setter -
last
→ ValueCell<
T> -
Available on ValueCell<
Returns a cell which evaluates to Iterable.last applied on the value in this cell.Iterable< , provided by the IterableCellExtension extensionT> >no setter -
length
→ ValueCell<
int> -
Available on ValueCell<
Returns a cell which evaluates to Iterable.length applied on the value in this cell.Iterable< , provided by the IterableCellExtension extensionT> >no setter -
single
→ ValueCell<
T> -
Available on ValueCell<
Returns a cell which evaluates to Iterable.single applied on the value in this cell.Iterable< , provided by the IterableCellExtension extensionT> >no setter
Methods
-
cast<
R> () → ValueCell< Iterable< R> > -
Available on ValueCell<
Returns a cell which evaluates to Iterable.cast<R>() applied on the value in this cell.Iterable< , provided by the IterableCellExtension extensionT> > -
map<
E> (E toElement(T e)) → ValueCell< Iterable< E> > -
Available on ValueCell<
Returns a cell which evaluates to Iterable.map() applied on the value in this cell.Iterable< , provided by the IterableCellExtension extensionT> > -
toList(
) → ValueCell< List< T> > -
Available on ValueCell<
Returns a cell which evaluates to Iterable.toList applied on the value in this cell.Iterable< , provided by the IterableCellExtension extensionT> > -
toSet(
) → ValueCell< Set< T> > -
Available on ValueCell<
Returns a cell which evaluates to Iterable.toSet applied on the value in this cell.Iterable< , provided by the IterableCellExtension extensionT> >