(self: SubscriptionRef<A>, value: A)
| 248 | }))) |
| 249 | |
| 250 | const setUnsafe = <A>(self: SubscriptionRef<A>, value: A) => { |
| 251 | self.value = value |
| 252 | PubSub.publishUnsafe(self.pubsub, value) |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * Retrieves the current value and updates it atomically with the result of |
no outgoing calls
no test coverage detected