All Superinterfaces:
LongElements, Vector
All Known Subinterfaces:
Long1, Long2, Long3, Long4
All Known Implementing Classes:
BBLong1, BBLong2, BBLong3, BBLong4, BBLongN

public interface LongN extends Vector, LongElements
  • Method Details

    • get

      long 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, long 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.