Package | Description |
---|---|
com.caucho.util |
Assorted utilities
|
Modifier and Type | Field and Description |
---|---|
Slist |
Slist.next |
Modifier and Type | Method and Description |
---|---|
static Slist |
Slist.append(Slist a,
Slist b)
Destructively append
|
static Slist |
Slist.copy(Slist slist)
Copies a slist
|
static Slist |
Slist.remove(Slist slist,
java.lang.Object object)
Remove if ==
|
Slist |
Slist.rest() |
static Slist |
Slist.reverse(Slist slist)
Destructively reverse
|
Modifier and Type | Method and Description |
---|---|
static Slist |
Slist.append(Slist a,
Slist b)
Destructively append
|
static Slist |
Slist.copy(Slist slist)
Copies a slist
|
static Slist |
Slist.remove(Slist slist,
java.lang.Object object)
Remove if ==
|
static Slist |
Slist.reverse(Slist slist)
Destructively reverse
|
Constructor and Description |
---|
Slist(Slist next,
java.lang.Object first)
Create a new cons-cell
|