operator & method

SetSignal<E> operator &(
  1. Set<E> other
)

Fork: create a new signal with value is the concatenation of source signal and iterable parameter

Implementation

SetSignal<E> operator &(Set<E> other) {
  final list = value;
  final rs = Set<E>.from(list)..addAll(other);
  return SetSignal(rs);
}