Reactive Signal is Mutex.md
Recently I was making UI in Rust that had to use reactive signals. It occured to me that a reactive signal that holds one value is really just a mutex-guarded value + pubsub. By this logic. you should probably use Signal<T>
instead of RwLock<T>
everywhere without overhead.
Thanks Solid for making this world better place!