public class Slist
extends java.lang.Object
Constructor and Description |
---|
Slist(Slist next,
java.lang.Object first)
Create a new cons-cell
|
Modifier and Type | Method and Description |
---|---|
static Slist |
append(Slist a,
Slist b)
Destructively append
|
static Slist |
copy(Slist slist)
Copies a slist
|
static Slist |
remove(Slist slist,
java.lang.Object object)
Remove if ==
|
Slist |
rest() |
static Slist |
reverse(Slist slist)
Destructively reverse
|
java.lang.Object |
value() |