You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use TearDown bound instead of FnOnce() for effect hooks (#62)
* use TearDown bound instead of FnOnce() for effect hooks
Fixes#61. Replaces the old `Destructor: FnOnce() + 'static` bound with
`Destructor: TearDown` on use_effect_once, use_effect_update, and
use_effect_update_with_deps, so users no longer need to return `|| ()`
when there is no cleanup logic.
* simplify doc and bump version 0.6.1
---------
Co-authored-by: Jet Li <[email protected]>