A Signal with a .set() method and writable .value property.
Subscribe sink to receive values
Optional
A signal object can be called to get its current value
Get a read-only version of this signal
Get the signal's current value, without adding the signal as a dependency
(This is exactly equivalent to calling peek(signal), and exists here mainly for interop with other signal frameworks.)
The current value
Update the current value with a patch function
Note: this reads the signal's current value, which may produce a write conflict or circular dependency if you call it from inside a rule.
Readonly
Set the current value. (Note: this is a bound method so it can be used as a callback.)
New writable signal with a custom setter
A Signal with a .set() method and writable .value property.