operator << method

MapSignal<K, V> operator <<(
  1. Map<K, V> other
)

Inject: Update current signal value with iterable

Implementation

MapSignal<K, V> operator <<(Map<K, V> other) {
  value.addAll(other);
  set(value, force: true);
  return this;
}