On Mar 22, 2008, at 11:16 AM, Stephan Koops wrote:
Since we have java.util.List. Ok, sometime it is useful to ue arrays, but IMO in the most cases the list is the better solution. Typically you collect the result in a List, because you don't know the result size. Than you perhaps convert it to an array. So it is not faster to return arrays. The only argument for arrays are for me, that they are faster.
I don't have that strong opinions on List vs. arrays. My only point was saying that Java arrays are not "legacy".
Series is also a List. you can handle it as List.
Yes, I know. I simply don't see that Series solves any particular problem and hence why it's necessary. IMHO, it would have been simpler and cleaner just to use List directly which every Java programmers knows how to use already.
- Paul

