public interface IntsModifiable extends Ints
Modifier and Type | Method and Description |
---|---|
void |
append(int v) |
void |
append(int[] vs) |
void |
append(int[] vs,
int from,
int to) |
void |
append(IntBuffer vs) |
void |
append(IntBuffer vs,
int c) |
void |
append(Ints vs) |
void |
append(Ints vs,
int from,
int to) |
void |
clear() |
void |
compact() |
void |
ensureCapacity(int minCapacity) |
void |
insert(int i,
int v) |
void |
insert(int i,
int[] vs) |
void |
insert(int i,
int[] vs,
int from,
int to) |
void |
insert(int i,
IntBuffer vs) |
void |
insert(int i,
IntBuffer vs,
int c) |
void |
insert(int i,
Ints vs) |
void |
insert(int i,
Ints vs,
int from,
int to) |
void |
prepend(int v) |
void |
prepend(int[] vs) |
void |
prepend(int[] vs,
int from,
int to) |
void |
prepend(IntBuffer vs) |
void |
prepend(IntBuffer vs,
int c) |
void |
prepend(Ints vs) |
void |
prepend(Ints vs,
int from,
int to) |
void |
remove(int v)
Removes a single copy of the specified value.
|
void |
removeIndex(int index)
Remove value at index.
|
void |
removeRange(int from,
int to)
Removes values starting at index from (inclusive) to index to (exclusive).
|
void |
set(int i,
int v) |
void |
set(int i,
int[] vs) |
void |
set(int i,
int[] vs,
int from,
int to) |
void set(int i, int v)
void set(int i, int[] vs)
void set(int i, int[] vs, int from, int to)
void insert(int i, int v)
void insert(int i, int[] vs)
void insert(int i, Ints vs)
void insert(int i, IntBuffer vs)
void insert(int i, int[] vs, int from, int to)
void insert(int i, Ints vs, int from, int to)
void insert(int i, IntBuffer vs, int c)
void append(int v)
void append(int[] vs)
void append(Ints vs)
void append(IntBuffer vs)
void append(int[] vs, int from, int to)
void append(Ints vs, int from, int to)
void append(IntBuffer vs, int c)
void prepend(int v)
void prepend(int[] vs)
void prepend(Ints vs)
void prepend(IntBuffer vs)
void prepend(int[] vs, int from, int to)
void prepend(Ints vs, int from, int to)
void prepend(IntBuffer vs, int c)
void remove(int v)
void removeRange(int from, int to)
void removeIndex(int index)
void clear()
void ensureCapacity(int minCapacity)
void compact()
Copyright © 2013 Metron, Inc.. All rights reserved.