public class IntArrayList extends Object
Constructor and Description |
---|
IntArrayList(int growAmount) |
Modifier and Type | Method and Description |
---|---|
void |
add(int val) |
void |
addAll(int[] other) |
void |
clear() |
boolean |
contains(int needle) |
static IntArrayList |
createIntArrayList() |
void |
fill(int start,
int end,
int val) |
int |
get(int index) |
void |
pop() |
void |
push(int id) |
void |
set(int index,
int value) |
int |
size() |
int[] |
toArray() |
public static IntArrayList createIntArrayList()
public int[] toArray()
public void add(int val)
public void push(int id)
public void pop()
public void set(int index, int value)
public int get(int index)
public void fill(int start, int end, int val)
public int size()
public void addAll(int[] other)
public void clear()
public boolean contains(int needle)
Copyright © 2019. All rights reserved.