Hi, I was trying to find out, what the best way is to have some local, constant storage for a function, which is only accessible from inside the function So something like this: begin const local a = [] test() = dosomething(a) end
I was quite surprised, that you can't do this efficiently. Or at least I didn't find a way, or tested it incorrectly. Here are the different combinations I tried and the emitted native code: https://gist.github.com/SimonDanisch/e4bed0a16bdd847a8c2b#file-local_function_storage-jl test11 && test12 seems to be what julia does internally for test1-test4 (and the example here) It's especially odd, as a global const seems to be faster than a local const, even though that the local version is more restricted. Is this because there has been more time spend on making globals fast? Best, Simon
