Packages

package lisp

Content Hierarchy
Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class LAtom (name: String) extends SExpression with Product with Serializable
  2. case class LCons (car: SExpression, cdr: SExpression) extends SExpression with Product with Serializable
  3. case class LList (elements: SExpression*) extends SExpression with Product with Serializable
  4. sealed abstract class SExpression extends AnyRef

    Lisp SExpression Datatypes and Parser This is a basic LISP S-expression parser, without quote character, macros or other fancy stuff.

    Lisp SExpression Datatypes and Parser This is a basic LISP S-expression parser, without quote character, macros or other fancy stuff. Atoms have a reduced namespace and need to be extended if necessary.

    Printing a Datastructure should output valid Lisp.

  5. class SExpressionParser extends Parser

Ungrouped