SignalSetNullExt<E> extension

on

Methods

add(E valueToAdd) bool?
Adds value to the set.
addAll(Iterable<E> elements) → void
Adds all elements to this set.
clear() → void
Removes all elements from the set.
remove(Object? valueToRemove) bool?
Removes value from the set.
removeAll(Iterable<Object?> elements) → void
Removes each element of elements from this set.
removeWhere(bool test(E element)) → void
Removes all elements of this set that satisfy test.
retainAll(Iterable<Object?> elements) → void
Removes all elements of this set that are not elements in elements.
retainWhere(bool test(E element)) → void
Removes all elements of this set that fail to satisfy test.