Jatha Software

Uses of Interface
org.jatha.dynatype.LispCons

Packages that use LispCons
org.jatha   
org.jatha.dynatype   
 

Uses of LispCons in org.jatha
 

Methods in org.jatha that return LispCons
 LispCons Jatha.makeCons(LispValue theCar, LispValue theCdr)
          makeCons(a,b) creates a new Cons cell, initialized with the values a and b as the CAR and CDR respectively.
 

Uses of LispCons in org.jatha.dynatype
 

Classes in org.jatha.dynatype that implement LispCons
 class StandardLispCons
           
 

Methods in org.jatha.dynatype that return LispCons
static LispCons LispValueFactory.makeCons(Jatha lisp, LispValue theCar, LispValue theCdr)
          Deprecated. Use the same method on the Jatha class instead
static LispCons LispValueFactory.makeList(Jatha lisp, LispValue first)
          Deprecated. Use the same method on the Jatha class instead
static LispCons LispValueFactory.makeList(Jatha lisp, LispValue first, LispValue second)
          Deprecated. Use the same method on the Jatha class instead
static LispCons LispValueFactory.makeList(Jatha lisp, LispValue first, LispValue second, LispValue third)
          Deprecated. Use the same method on the Jatha class instead
static LispCons LispValueFactory.makeList(Jatha lisp, LispValue first, LispValue second, LispValue third, LispValue fourth)
          Deprecated. Use the same method on the Jatha class instead
 


Jatha Software