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
Defines a cacheable function with the given name fun and arguments args. The returned value by the code block is cached if it doesn't exist already in cache, otherwise, it is returned directly from cache and the code block is not executed.
Defines an updatable caching function. The content of the cache is updated without interfering the function execution. That is, the method would always be executed and the result cached.
Implement utility macos:
defcacheable
Defines a cacheable function with the given name
fun
and argumentsargs
. The returned value by the code block is cached if it doesn't exist already in cache, otherwise, it is returned directly from cache and the code block is not executed.defevict
Defines a function with cache eviction enabled on function completion (one or all values are removed on function completion).
defupdatable
Defines an updatable caching function. The content of the cache is updated without interfering the function execution. That is, the method would always be executed and the result cached.
The text was updated successfully, but these errors were encountered: