All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class oplan.util.lisp.Cons

java.lang.Object
   |
   +----oplan.util.lisp.LispObject
           |
           +----oplan.util.lisp.List
                   |
                   +----oplan.util.lisp.Cons

public class Cons
extends List
implements Cloneable
Non-empty lists.


Variable Index

 o car
 o cdr

Constructor Index

 o Cons(Object, List)

Method Index

 o append(List)
 o car()
 o cdr()
 o clone()
 o elementAt(int)
 o elements()
 o equal(List)
 o equals(Object)
 o find(Object)
 o hashCode()
 o isNull()
 o length()
 o toString()

Variables

 o car
 Object car
 o cdr
 List cdr

Constructors

 o Cons
 public Cons(Object car,
             List cdr)

Methods

 o isNull
 public boolean isNull()
Overrides:
isNull in class List
 o car
 public Object car()
Overrides:
car in class List
 o cdr
 public List cdr()
Overrides:
cdr in class List
 o length
 public int length()
Overrides:
length in class List
 o elementAt
 public Object elementAt(int i)
Overrides:
elementAt in class List
 o elements
 public Enumeration elements()
Overrides:
elements in class List
 o equal
 public boolean equal(List list)
Overrides:
equal in class List
 o find
 public boolean find(Object a)
Overrides:
find in class List
 o append
 public List append(List tail)
Overrides:
append in class List
 o clone
 public Object clone()
Overrides:
clone in class List
 o equals
 public boolean equals(Object a)
Overrides:
equals in class Object
 o hashCode
 public int hashCode()
Overrides:
hashCode in class Object
 o toString
 public String toString()
Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index