Package ix.util.lisp

Interface Summary
ListCollector.adderFunction  
 

Class Summary
Cons Non-empty lists.
ConsEnumeration Cons enumerations.
Delay A class for delaying evaluation. A standard way to construct a Delay is to instantiate an anonymous class.
ItemVar  
Keyword  
Lisp The class for static Lisp utilities.
LispFileReader A LispReader for files.
LispObject The root class for Lisp objects
LispReader A LispReader can be used to read Objects using a Lisp-like syntax.
LispStreamTokenizer  
LispTokenizer A class to be extended by tokenizers that read a Lisp-like syntax.
ListCollector A Collector that uses a LList to hold the elements and that provides a number of different ways to add elements.
ListEnumeration List enumerations.
LList Lisp-style lists. The class structure is like that in Common Lisp -- there is an abstract class List with two subclasses, Cons and Null -- but only proper lists are allowed.
Null The class of Lisp.NIL, and of nothing else.
NullEnumeration Null enumerations.
Symbol The root class for Lisp symbols. The correct way to create a new symbol is to call Symbol.intern(String name).
 

Exception Summary
LispReadException The class of errors thrown by the Lisp reader.