Class to store an array of floats.
![]()
Class Functions:
==============
void append( float value )
Add a float to the end of the array.
void prepend( float value )
Add a integer to the front of the array.
void clear()
Remove all floats stored in the array.
int no()
Returns the total count of floats in the array.
int find( float value )
Return the index in the array for the float "value". If it cannot find the float, -1 is returned.
int rfind( float value )
Return the index in the array for the float "value". If it cannot find the float, -1 is returned. Begins search from back-to-front.
void insert( int pos, float value )
Insert float value into array at specified position
void remove( int pos )
Remove stored float at specified position.
int index( int pos )
Return float value at specified position.