Module Simula

Class RTS_RTObject.RTS_BOUNDS

java.lang.Object
simula.runtime.RTS_RTObject.RTS_BOUNDS
Enclosing class:
RTS_RTObject

public final class RTS_RTObject.RTS_BOUNDS extends Object
This class is used to hold bound pairs in RTS_ARRAY objects.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
    An array upper bound
    final int
    An array ELEMENTS size
  • Constructor Summary

    Constructors
    Constructor
    Description
    RTS_BOUNDS(int LB, int UB)
    Create an array bound pair object
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • LB

      public final int LB
      An array upper bound
    • SIZE

      public final int SIZE
      An array ELEMENTS size
  • Constructor Details

    • RTS_BOUNDS

      public RTS_BOUNDS(int LB, int UB)
      Create an array bound pair object
      Parameters:
      LB - Lower bound
      UB - Upper bound
  • Method Details