Hi,
How does the map
function’s cache behave if I pass in a function with partial into map
? I’m passing in a function that takes in more arguments and changes behavior according to it which is wrapped with the partial
function.
Hi ! partial
-wrapped functions are supported
If any of the partial argument changes, the map
function will re-compute the result.
1 Like
That’s great. Thank you!