Hi, > If this is not the general position, we could consider reaching the same > result in > some other way? For example, recycling static member array variables in the > helper class to avoid reallocations A good suggestion and than would cut down the memory allocation/CG cost, and given that it's an array with two numbers I don't think memory is the issue here. however in this case I'm not 100% what all the callers do with the returned array and in case I think its cached into an array which means we couldn't do that.
> Finally, as a side note, I read that Falcon is able to automatically inline > method calls From memory you have to tell it do it and it's an all or noting affair which seems a bit restrictive to me, but certainly worth keeping in mind. Thanks, Justin