Quote:
Originally Posted by Gunderak
PHP Code:
with(Text_List){ for(temp.indx = 0; temp.indx < this.data.size(); temp.indx ++){ addrow(indx, data[indx]); } }
|
It's a bad practise looping through an array which can not change its value mid loop while using .size(), especially if it's a large array such as can be expected from an SQLite table, this can create a lot of overhead.