operator << method
Inject: Update current signal value with iterable
Implementation
ListSignal<E> operator <<(Iterable<E> other) {
value.addAll(other);
set(value, force: true);
return this;
}
Inject: Update current signal value with iterable
ListSignal<E> operator <<(Iterable<E> other) {
value.addAll(other);
set(value, force: true);
return this;
}