I have a handle-based class that I need to create a vector of. An easy method of doing this is to dynamically construct the vector in a for loop, but this causes mlint>
foo(10) = HandleClass();
This will default fill foo(1) through foo(9).
Note that this only works if HandleClass's constructor works with no input arguments (that is, it can be default-constructed).