JuliaPluto/Pluto.jl
View on GitHubUpdate dependent cells for functions modifying their arguments
Open
#316 opened on Aug 24, 2020
documentationenhancementgood first issuehelp welcomereactivity
Description
Currently, dependencies introduced by functions modifying their arguments in-place are not considered for notebook updates.
Example (each row in a separate Pluto cell):
a = [4, 3, 2, 1]
a # prints [4, 3, 2, 1]
sort!(a) # prints [1, 2, 3, 4], but does not update previous cell