All Superinterfaces:
IntElements, Vector
All Known Subinterfaces:
Int1, Int2, Int3, Int4
All Known Implementing Classes:
BBInt1, BBInt2, BBInt3, BBInt4, BBIntN

public interface IntN extends Vector, IntElements
  • Method Details

    • get

      int get(int index)
      Get component at position index.
      Parameters:
      index - index of the vector component to get
      Returns:
      component value
      Implementation Note:
      No Error checking will be done by this method. Too large or small indices may result in undefined behavior.
    • put

      void put(int index, int value)
      Set component at position index to value.
      Parameters:
      index - index of the vector component to set
      value - value to set
      Implementation Note:
      No Error checking will be done by this method. Too large or small indices may result in undefined behavior.