Class RTS_REF_ARRAY<T>
java.lang.Object
simula.runtime.RTS_ARRAY
simula.runtime.RTS_REF_ARRAY<T>
- Type Parameters:
T
-the actual array type.
Link to GitHub: Source File.
This class represent a Simula ref(T) array.
- Author:
- Øystein Myhre Andersen
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionRTS_REF_ARRAY
(RTS_BOUNDS... BOUNDS) Create a ref() array with the given bounds. -
Method Summary
Modifier and TypeMethodDescriptionCOPY()
Abstract method redefined for all subclass_ARRAY. getELEMENT
(int... x) This method will return a value from ELTS(x...)putELEMENT
(int ix, T val) This method will put a object reference into ELTS(ix)Methods inherited from class simula.runtime.RTS_ARRAY
index, lowerBound, nDim, size, toString, upperBound
-
Field Details
-
ELTS
The elements in this RTS_REF_ARRAY
-
-
Constructor Details
-
RTS_REF_ARRAY
Create a ref() array with the given bounds.- Parameters:
BOUNDS
- the array bounds
-
-
Method Details