I was reading about some VBA performance optimisations and learned that there's a difference between optimising for memory usage versus performance in 32bit VBA applications.
An example of memory optimisation would be using the smallest variable appropriate for your application, eg using an Int instead of a Long of a Float.
For performance it appears to be about matching the variable size in bits to the OS so that it doesn't have to do any type conversions from 8bit to 32bit 'under the hood'.
Can I assume this logic extends into the 64bit version of Excel 365 running VBA7? Ie, is a LongLong (64bit) the most performance optimised approach to working with integers at the cost of memory use versus alternatives such as the Long or Int?
EDIT: There's an answer here that shows the results of testing on 64 bit operating systems and the answer was to use Longs but the optimisation doesn't account for much in terms of time saved (13s over 1 billion operations).