This class implements a dynamic array of Float
values.
This class is creatable.
DIM hFloatArray AS Float[] hFloatArray = NEW Float[] ( [ Size AS Integer ] ) |
Float
values.
Size specifies the initial size of the array. By default, the array is initially void.
This class acts like an array.
DIM hFloatArray AS Float[] DIM aFloat AS Float aFloat = hFloatArray [ Index AS Integer ] |
DIM hFloatArray AS Float[] DIM aFloat AS Float hFloatArray [ Index AS Integer ] = aFloat |
This class is enumerable with the FOR EACH keyword.
DIM hFloatArray AS Float[] DIM aFloat AS Float FOR EACH aFloat IN hFloatArray ... NEXT |