FortCpp
FortCpp copied to clipboard
Create LHS resize
Make a function that allows the LHS of an operation to be resized to the size of the RHS. Something like this:
Array1d<float> a,b(10),c(10);
a.resize() = b+c;
Create a wrapper class to allow this.