Package | Description |
---|---|
iterator.listfour |
Modifier and Type | Class and Description |
---|---|
(package private) class |
Cons |
(package private) class |
Nil |
Modifier and Type | Field and Description |
---|---|
private List |
MutListObj.l |
static List |
ListF.nil |
private List |
ListIterator.node |
(package private) List |
Cons.tl |
Modifier and Type | Method and Description |
---|---|
static List |
ListF.cons(int hd,
List tl) |
List |
List.delete(int i) |
List |
Nil.delete(int i) |
List |
Cons.delete(int i) |
List |
List.insert(int i) |
List |
Nil.insert(int i) |
List |
Cons.insert(int i) |
Modifier and Type | Method and Description |
---|---|
static List |
ListF.cons(int hd,
List tl) |
Constructor and Description |
---|
Cons(int hd,
List tl) |
ListIterator(List node,
Changeable parent) |