operator << method

ListSignal<E> operator <<(
  1. Iterable<E> other
)

Inject: Update current signal value with iterable

Implementation

ListSignal<E> operator <<(Iterable<E> other) {
  value.addAll(other);
  set(value, force: true);
  return this;
}