stallone.api.ints.IIntArray
TODO: change this copy paste documentation This is a joint interface for all primitive double containers with a fixed order of elements, e.g. arrays, tables, lists. In principle real-valued tensors can also be handled by this object, although we currently provide no method to directly access more than two indexes in order to keep the interface small. Single-index based access should work on higher-order tensors as well. All IDoubleArray's have a sequence in which individual elements can be iterated. The implementing object defines this sequence. Index-based methods such as get(i), set(i, x), and the iterator operate based on this sequence. This interface is the standard way of exchanging real-valued double containers, in order to make all Classes operating with such objects compatible. This option was chosen in order to prefer flexibility and ease-to-use over strict type specificity Methods operating with double containers may return more specific objects, but should accept IDoubleArray (or IComplexArray, see below) as parameters If you want to operate with complex numbers, check out IComplexArray
@author noe