blob: d674b2d10e7b2aa8f9505c4dd479db6478be0bb2 [file] [log] [blame]
package elemental.util;
/**
* Models any object which acts like a Javascript array of primitive numbers..
*/
@Deprecated
public interface IndexableNumber {
/**
* Gets the value at a given index.
*
* @param index the index to be retrieved
* @return the value at the given index
*/
double numberAt(int index);
/**
* Gets the length of the array.
*
* @return the array length
*/
int length();
}