operator & method
Fork: create a new signal with value is the concatenation of source signal and iterable parameter
Implementation
MapSignal<K, V> operator &(Map<K, V> other) {
final rs = Map<K, V>.from(peek())..addAll(other);
return MapSignal(rs);
}