| Package | Description |
|---|---|
| visitor.list |
| Modifier and Type | Class and Description |
|---|---|
(package private) class |
Cons |
(package private) class |
Nil |
| Modifier and Type | Field and Description |
|---|---|
static List |
ListF.nil |
private List |
Reverse.result |
private List |
Cons.tl |
| Modifier and Type | Method and Description |
|---|---|
static List |
ListF.cons(int hd,
List tl) |
List |
Reverse.visitCons(int hd,
List tl) |
List |
Reverse.visitNil() |
| Modifier and Type | Method and Description |
|---|---|
static List |
ListF.cons(int hd,
List tl) |
T |
ListVisitor.visitCons(int hd,
List tl) |
java.lang.Integer |
Sum.visitCons(int hd,
List tl) |
List |
Reverse.visitCons(int hd,
List tl) |
| Constructor and Description |
|---|
Cons(int hd,
List tl) |