Interface CloneListIterator.Mutator<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void add​(int index, T o)
      Add the specified object to the original list.
      void remove​(int index)
      Remove the specified object from the original list.
      void set​(int index, T o)
      Set the specified object in the original list.
    • Method Detail

      • add

        void add​(int index,
                 T o)
        Add the specified object to the original list.
      • remove

        void remove​(int index)
        Remove the specified object from the original list.
      • set

        void set​(int index,
                 T o)
        Set the specified object in the original list.