mirror of
https://github.com/centau/vide.git
synced 2026-08-20 14:41:37 +00:00
Make root() return destructor automatically
This commit is contained in:
parent
8142acd1c1
commit
82eec61c45
8 changed files with 26 additions and 30 deletions
|
|
@ -13,15 +13,13 @@ local effect = vide.effect
|
|||
local count = source(0)
|
||||
|
||||
|
||||
local destroy = root(function(destroy)
|
||||
local destroy = root(function()
|
||||
effect(function()
|
||||
local x = count()
|
||||
cleanup(function() print(x) end)
|
||||
end)
|
||||
|
||||
cleanup(function() print "root destroyed" end)
|
||||
|
||||
return destroy
|
||||
end)
|
||||
|
||||
count(1) -- prints "0"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue