feat: add split method to use_state

This commit is contained in:
Jonathan Kelley 2022-03-04 14:31:04 -05:00
parent 6c3f5195f4
commit 156e3c21ba

View file

@ -285,6 +285,12 @@ impl<T: Clone> UseState<T> {
RefMut::map(slot, |rc| Rc::get_mut(rc).expect("the hard count to be 0"))
}
/// Convert this handle to a tuple of the value and the handle itself.
#[must_use]
pub fn split(&self) -> (&T, &Self) {
(&self.current_val, self)
}
}
impl<T: 'static> Clone for UseState<T> {