Are calls to `resolve()` cached? as in, if I do so...
# ksp
f
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
it is cached by compiler, so second call will be much cheaper.
👍 2