This class implements a dynamic array of Float
values.
This class is creatable.
DIM hFloatArray AS Float[] hFloatArray = NEW Float[] ( [ Size AS Integer ] ) |
Creates an array of 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 ] |
Returns a value stored in the array from its index.
DIM hFloatArray AS Float[] DIM aFloat AS Float hFloatArray [ Index AS Integer ] = aFloat |
Modifies the value stored in the array at the specified index.
This class is enumerable with the FOR EACH keyword.
DIM hFloatArray AS Float[] DIM aFloat AS Float FOR EACH aFloat IN hFloatArray ... NEXT |
Enumerates each element stored in the array.