Interface BaseMSeq<T>

All Superinterfaces:
BaseSeq<T>, Iterable<T>, RandomAccess
All Known Implementing Classes:
Array

public interface BaseMSeq<T> extends BaseSeq<T>
General base interface for an ordered, fixed sized, mutable, object sequence.
Since:
5.2
Version:
5.2
  • Method Details

    • set

      void set(int index, T value)
      Set the value at the given index.
      Parameters:
      index - the index of the new value.
      value - the new value.
      Throws:
      IndexOutOfBoundsException - if the index is out of range (index < 0 || index >= size()).