Join Slack
Powered by
Are calls to `resolve()` cached? as in, if I do so...
# ksp
f
Fudge
07/28/2021, 7:57 AM
Are calls to
resolve()
cached? as in, if I do something like this:
Copy code
a.resolve() a.resolve()
Does this take double the amount of time, or is the second call much cheaper?
j
Jiaxiang
07/28/2021, 9:40 AM
it is cached by compiler, so second call will be much cheaper.
👍 2
2
Views
Open in Slack
Previous
Next