Package live

Interface MutableLiveList<T>

All Superinterfaces:
AutoCloseable, Iterable<T>, LiveList<T>
All Known Implementing Classes:
LiveArrayList

public interface MutableLiveList<T> extends AutoCloseable, LiveList<T>
  • Method Details

    • add

      void add(T value)
    • insert

      void insert(int index, T value)
    • setAt

      void setAt(int index, T value)
    • remove

      void remove(int index)
    • remove

      void remove(T value)
    • clear

      void clear()
    • close

      void close()
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface LiveList<T>