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
It could be useful to include an optional parameter that can take a vector of boolean values to cause the code to be re-run and stashed. I will need to think about whether to use any() or all() and whether to have TRUE or FALSE trigger running the code.
The text was updated successfully, but these errors were encountered:
If this were to be implemented, I would argue for just a simple TRUE/FALSE value, not a vector. That way, it is up to the user to decide whether to use any() or all() if they need a more complicated setup.
Either restash or perhaps more explicitly force_restash sound like reasonable names. Other caching functions have also used rerun (I guess all of these would trigger running on TRUE, with FALSE as the default).
It could be useful to include an optional parameter that can take a vector of boolean values to cause the code to be re-run and stashed. I will need to think about whether to use
any()
orall()
and whether to haveTRUE
orFALSE
trigger running the code.The text was updated successfully, but these errors were encountered: