Closed pepsighan closed 6 years ago
Closes #12.
This PR allows the following code to mutate state within closures.
let setter = self.state_setter(); let closure = Box::new(move || { setter.set_state(|state| { // mutate the state }); });
Closes #12.
This PR allows the following code to mutate state within closures.