Interface LongsModifiable

    • Method Detail

      • set

        void set​(int i,
                 long v)
      • set

        void set​(int i,
                 long[] vs)
      • set

        void set​(int i,
                 long[] vs,
                 int from,
                 int to)
      • insert

        void insert​(int i,
                    long v)
      • insert

        void insert​(int i,
                    long[] vs)
      • insert

        void insert​(int i,
                    Longs vs)
      • insert

        void insert​(int i,
                    long[] vs,
                    int from,
                    int to)
      • insert

        void insert​(int i,
                    Longs vs,
                    int from,
                    int to)
      • insert

        void insert​(int i,
                    LongBuffer vs,
                    int c)
      • append

        void append​(long v)
      • append

        void append​(long[] vs)
      • append

        void append​(Longs vs)
      • append

        void append​(long[] vs,
                    int from,
                    int to)
      • append

        void append​(Longs vs,
                    int from,
                    int to)
      • prepend

        void prepend​(long v)
      • prepend

        void prepend​(long[] vs)
      • prepend

        void prepend​(Longs vs)
      • prepend

        void prepend​(long[] vs,
                     int from,
                     int to)
      • prepend

        void prepend​(Longs vs,
                     int from,
                     int to)
      • prepend

        void prepend​(LongBuffer vs,
                     int c)
      • remove

        void remove​(long v)
        Removes a single copy of the specified value. If multiple copies are present, there is no guarantee which one will be removed.
      • removeRange

        void removeRange​(int from,
                         int to)
        Removes values starting at index from (inclusive) to index to (exclusive). All other values with indices greater than or equal to index to have their index in the array decreased by to-from and the size of the array is decreased by to-from.
      • removeIndex

        void removeIndex​(int index)
        Remove value at index. All other values with indices greater than index have their index in the array decreased by one and the size of the array is decreased by one.
      • clear

        void clear()
      • ensureCapacity

        void ensureCapacity​(int minCapacity)
      • compact

        void compact()