Package org.jatha.dynatype

Examples of org.jatha.dynatype.StandardLispInteger



  public LispValue intern(LispString symbolString)
  {
    if (f_lisp.COLON.eql(symbolString.basic_elt(0)) != f_lisp.NIL)
      return intern((LispString)(symbolString.substring(new StandardLispInteger(f_lisp, 1))),
                    (LispPackage)(f_lisp.findPackage("KEYWORD")));
    else
      return intern(symbolString, f_lisp.PACKAGE);
  }
View Full Code Here

TOP

Related Classes of org.jatha.dynatype.StandardLispInteger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.