Experimental
Creates a computed Set signal in Alien Signals that tracks changes to a source Set signal.
The type of the items in the Set.
A signal containing a Set.
A computed signal referencing that Set.
const setSignal = createSignal(new Set([1, 2]));const compSet = createComputedSet(setSignal); Copy
const setSignal = createSignal(new Set([1, 2]));const compSet = createComputedSet(setSignal);
Creates a computed Set signal in Alien Signals that tracks changes to a source Set signal.