- Range checking is performed in debug build for both arrays and lists. Type
- checking is done at compile-time. Warning: arrays <I>never</I> shrink, they
- only grow, so loading 10 millions in an array only to delete them 2 lines
- below is <I>not</I> recommended. However, it does free memory when it's
- destroyed, so if you destroy array also, it's ok.
+ Range checking is performed in debug build for both arrays and objarrays.
+ Type checking is done at compile-time. Warning: arrays <I>never</I> shrink,
+ they only grow, so loading 10 millions in an array only to delete them 2
+ lines below is <I>not</I> recommended. However, it does free memory when
+ it's destroyed, so if you destroy array also, it's ok.